Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to:

Excerpt

Change sort order for the receive order list at the mobile device.

...

You may use SetCurrentKey()-function with existing fields from the supplied table. But not you own custom fields (tags).

Sorting on custom fields

...

 

Template

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrders_OnAfterSetCurrentKey''', true, true)]
procedure OnGetReceiveOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
begin
end;


Example

[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Receive", 'OnGetReceiveOrders_OnAfterSetCurrentKey', '', true, true)]
procedure OnGetReceiveOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
begin
     _BaseOrderElementView.SetCurrentKey(BackendID);
     _BaseOrderElementView.Ascending(true);
end;

 

Version History

VersionChanges
MOB5.00Introduced

...