Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Use this event to

Excerpt

Change sort order for Order Lines at on the mobile device.

...


Description

You may use this event only to change the sort order of the Order Lines displayed at on the mobile device.  You 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::Codeunit,  Codeunit::"MOB WMS CountMOB WMS Phys Invt Recording",  'OnGetCountOrderLinesOnGetPhysInvtRecordingLines_OnAfterSetCurrentKey',  '',  truetrue,  truetrue)]
        localprocedure OnGetCountOrderLines OnGetPhysInvtRecordingLines_OnAfterSetCurrentKey(var  _BaseOrderLineElementView:  Record  "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
        begin
        end;


Example

        [EventSubscriber(ObjectType::Codeunit,  Codeunit::"MOB WMS CountMOB WMS Phys Invt Recording",  'OnGetCountOrderLinesOnGetPhysInvtRecordingLines_OnAfterSetCurrentKey',  '',  truetrue,  truetrue)]
        localprocedure OnGetCountOrderLines MyOnGetPhysInvtRecordingLines_OnAfterSetCurrentKey(var  _BaseOrderLineElementView:  Record  "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
        begin
                _BaseOrderLineElementView.SetCurrentKey(ItemNumber);
                _BaseOrderLineElementView.Ascending(false);
        end; 


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

 

Version History

VersionChanges
MOB5.0019Introduced