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
    • Use 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 to order by ascending/descending value

Sorting

...

by custom fields

Ascending or descending order

  • The .Ascending()-function can be used to order by ascending/descending value.  
  • For existing fields you can subscribe to this single event to set both .Ascending() and .SetCurrentKey().
    For custom fields you must subscribe to two separate events to achieve this:
    1. Use OnGetReceiveOrderLines_OnAfterSetFrom... with Set_Sorting1()-function as described above.
    2. Then use .Ascending()-function in this event.



Template

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

    // _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
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orderlines" and label = "example" and label = "onaftersetcurrentkey"

 

Version History

VersionChanges
MOB5.00Introduced

...