Use this event to
...
You may use this event only to change sort order .
You of the OrderLines-list displayed at the mobile device. You cannot set any values from this event.
Receive Order lines can be OrderLines-list can consist of a combination of lines collected from:
- Warehouse ReceiptsReceipt Lines
- Purchase OrdersOrder Lines
- Transfer OrdersOrder Lines
- Sales Return OrdersOrder Lines
Sorting by existing fields
...
Change sorting key
- Not possible from this event. Use OnGetReceiveOrderLines_OnAfterSetFrom... with the
Set_Sorting1()-
function instead.
- Not possible from this event. Use OnGetReceiveOrderLines_OnAfterSetFrom... with the
Change sorting direction
- This requires two steps for custom fields:
- Use OnGetReceiveOrderLines_OnAfterSetFrom... with
Set_Sorting1()
-function as described above. - 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
// _BaseOrderLineElementView: Temporary record representing the Order Lines
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;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...