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 at the mobile device.

...

You may use this event only to change sort order, and .
You cannot set any values from this event.

Receive Order lines can be from:

  • Warehouse Receipts
  • Purchase Orders
  • Transfer Orders
  • Sales Return Orders

...

Sorting using existing fields

...

  • Change sorting key
    • Use .SetCurrentKey(field)-function
    with existing fields
    • with any of the existing fields from the
    line
    • Line table (
    incoming
    • Record parameter on this event).

  • The 
    Change sorting direction
    • Use .Ascending(true/false)-function
    can be used
    • to order by ascending/descending value. 

...

Sorting using 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:


Template

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrderLines_OnAfterSetCurrentKey''', true, true)]
procedure OnGetReceiveOrderLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
begin
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;
 

Version History

VersionChanges
MOB5.00Introduced

...