Use this event to
Excerpt |
---|
Change sort order for the receive order lines list at the mobile device. |
...
- Warehouse Receipts
- Purchase Orders
- Transfer Orders
- Sales Return Orders
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).
- Use
Change sorting direction
- Use
.Ascending(true/false)
-function to order by ascending/descending value.
- Use
Sorting
...
by custom fields
Change sorting key (not possible from this event)
- Use Instead use OnGetReceiveOrderLines_OnAfterSetFrom[...] events to to set your custom sorting.
- Use Instead use OnGetReceiveOrderLines_OnAfterSetFrom[...] events to to set your custom sorting.
Change sorting direction
- The
.Ascending()
-function can be used to order by ascending/descending value. See: OnGetReceiveOrderLines_OnAfterSetFromAnyLine
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: - Subscribe to this event to set ascending/descending, Subscribe any of the OnGetReceiveOrderLines_ events to
- to set
- custom sorting.
- Then use
.Ascending()
-function in this event
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Receive", 'OnGetReceiveOrderLines_OnAfterSetCurrentKey', '', true, true)]
procedure OnGetReceiveOrderLines_OnAfterSetCurrentKey(var _BaseOrderLineElementView: Record "MOB Ns BaseDataModel Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"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
Version | Changes |
---|---|
MOB5.00 | Introduced |
...