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.

...

Orders can consist of a combination of headers collected from:

  • Warehouse Put-aways
  • Inventory Put-awaysPhys. Inventory Journals
  • Whse. Phys. Invt. Journals

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.
 

...


Template

...

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

 

Example

...

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


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

 

Version History

VersionChanges
MOB5.00Introduced

...