Versions Compared

Key

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

Use this event to

Excerpt

Change sort order for OrderList at the mobile device.


 

Description

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

OrderList can consist of a combination of headers collected from:

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

Sorting

...

by existing fields

  • You may use
    Change sorting key
    • Use .SetCurrentKey(field)-function
    with existing fields
    • with any of the existing fields from the
    supplied table, but not with your own custom fields (new tags).

Sorting on custom fields

...

    • Line table (Record parameter on this event).

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

Sorting by 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;



Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orders" and label = "example" and label = "onaftersetcurrentkey"

...