OnGetCountOrderLines_OnAfterSetCurrentKey

Use this event to

Change sort order for Order Lines at the mobile device. 

Description

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

 

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 Count", 'OnGetCountOrderLines_OnAfterSetCurrentKey''', true, true)]
    procedure OnGetCountOrderLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
    begin
    end;



Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrderLines_OnAfterSetCurrentKey''', true, true)]
    procedure OnGetCountOrderLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
    begin
        _BaseOrderLineElementView.SetCurrentKey(ItemNumber);
        _BaseOrderLineElementView.Ascending(false);
    end;

 

More examples

 

Version History

VersionChanges
MOB5.00Introduced