Use this event to
Excerpt |
---|
Change sort order for OrderList Orders at the mobile device. |
Description
You may use this event only to change sort order of the OrderList Orders displayed at the mobile device. You cannot set any values from this event.
OrderList Orders can consist of a combination of headers collected from:
- Warehouse Receipts
- Purchase Orders
- Sales Return Orders
- Transfer OrdersPut-aways
- Inventory Put-aways
Consider when defining your custom sorting whether the OrderList Orders should still be organized by where-collected-from (default behavior) or if orders should now be sorted across sources.
...
Change sorting key
- Not possible from this event. Use OnGetPutAwayOrders_OnAfterSetFrom... with the
Set_Sorting1()-
function instead.
- Not possible from this event. Use OnGetPutAwayOrders_OnAfterSetFrom... with the
Change sorting direction
- This requires two steps for custom fields:
- Use OnGetPutAwayOrders_OnAfterSetFrom... with
Set_Sorting1()
-function as described above. - Then use
.Ascending()
-function in this event.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ReceiveMOB WMS Put Away", 'OnGetReceiveOrdersOnGetPutAwayOrders_OnAfterSetCurrentKey', '', true true, true true)]
local procedure OnGetReceiveOrders OnGetPutAwayOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ReceiveMOB WMS Put Away", 'OnGetReceiveOrdersOnGetPutAwayOrders_OnAfterSetCurrentKey', '', true true, true true)]
local procedure OnGetReceiveOrders MyOnGetPutAwayOrders_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel ElementMOB Ns BaseDataModel Element")
begin
_BaseOrderElementView.SetCurrentKey(BackendID);
_BaseOrderElementView.Ascending(truefalse);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...