Versions Compared

Key

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

Use this event to

Excerpt

Change sort order for Orders at the mobile device.

...

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:

...

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

...

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


Template

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Put AwayMOB WMS Ship", 'OnGetPutAwayOrdersOnGetShipOrders_OnAfterSetCurrentKey''', true true, true true)]
    local procedure OnGetPutAwayOrders OnGetShipOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
    begin
    end;

Example

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Put AwayMOB WMS Ship", 'OnGetPutAwayOrdersOnGetShipOrders_OnAfterSetCurrentKey''', true true, true true)]
    local procedure OnGetPutAwayOrders MyOnGetShipOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
    begin
             _BaseOrderElementView.SetCurrentKey(BackendID);
             _BaseOrderElementView.Ascending(falsetrue);
    end;



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

...