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 3 Next »

Use this event to

Change sort order for OrderList at the mobile device.
 

Description

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

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.
 

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


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Assembly", 'OnGetAssemblyOrders_OnAfterSetCurrentKey''', true, true)]
    local procedure OnGetAssemblyOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
    end;


Example

    // [Example]  Change sorting to 'Output' item name ("Assembly Header".Description = tag "HeaderValue2" in the Xml)
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Assembly", 'OnGetAssemblyOrders_OnAfterSetCurrentKey''', true, true)]
    local procedure MyOnGetAssemblyOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderElementView.SetCurrentKey(HeaderValue2);
        _BaseOrderElementView.Ascending(true);
    end;



More examples

  

Version History

VersionChanges
MOB5.24Introduced
  • No labels