Versions Compared

Key

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

Use this event to:


Excerpt

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


Good to know

The order list can consist of a mix of headers collected from

  • Warehouse Receipts

...

  • Purchase Orders

...

  • Transfer Orders

...

  • Sales Return Orders

...


Sorting on existing fields

You may SetCurrentKey to any preexisting use SetCurrentKey()-function with existing fields from the NS BaseDataModel Element, while supplied table. But not you own custom fields (tags) is not supported from this trigger.
See also: .

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

...