Versions Compared

Key

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

Use this event to

Excerpt

Change sort order for the receive order lines list Order Lines at the mobile device.

 

Description

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

Receive Order lines can be from:

...

...

 

Sorting by existing fields

...

  • Change sorting key 
  • Change sorting direction
    • This is done in requires two steps for custom fields:
    1. Use instead Use OnGetReceiveOrderLines_OnAfterSetFrom[...] and the  with Set_Sorting1()-function as described above.
    2. Then use .Ascending()-function in this event  event.



Template

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrderLines_OnAfterSetCurrentKey''', true, true)]
procedure OnGetReceiveOrderLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
begin

    // Parameter: " _BaseOrderLineElementView" --> Temporary record representing the Order Lines

end;
 

Example

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

 

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleSee alsoMore examples
excerptTypesimple
cqllabel = "bc" and label = "orderlines" and label = "sortlinesexample" and label = "onaftersetcurrentkey"

 

Version History

VersionChanges
MOB5.00Introduced

...