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

Version 1 Next »

Use this event to

Change sort order for Orders at the mobile device.
 

Description

You may use this event only to change sort order of the Orders displayed at the mobile device. You cannot set any values from this event.

Orders can consist of a combination of headers collected from:

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

Consider when defining your custom sorting whether the OrderList should still be organized by where-collected-from (default behavior) or if orders should now be sorted across sources.
 

Sorting by existing fields

  • Change sorting key
    • Use .SetCurrentKey(field)-function with any of the existing fields from the Line table (Record parameter on this event).

  • Change sorting direction
    • Use .Ascending(true/false)-function. 

Sorting by custom fields

  • Change sorting key 
  • Change sorting direction
    • This requires two steps for custom fields:
    1. Use OnGetPickOrders_OnAfterSetFrom... with Set_Sorting1()-function as described above.
    2. Then use .Ascending()-function in this event.



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