Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

Use this event to

Change sort order for OrderList at the mobile device.
 

Description

OrderList can consist of a combination of headers collected from:

  • Warehouse Receipts
  • Purchase Orders
  • Transfer Orders
  • Sales Return Orders

 

Sorting on existing fields

  • You may use SetCurrentKey()-function with existing fields from the supplied table, but not with your own custom fields (new 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;



More examples

 

Version History

VersionChanges
MOB5.00Introduced
  • No labels