Use this event to
Excerpt |
---|
Change sort order for Orders OrderList at the mobile device. |
Description
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnAfterSetCurrentKey', '', true, true)]
local procedure OnGetProdOrderLines_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
begin
end;
Example
// [Example] Change sorting to ascending item name (= tag "HeaderValue2" in the Xml)
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnAfterSetCurrentKey', '', true, true)]
local procedure MyOnGetProdOrderLines_OnAfterSetCurrentKey(var _BaseOrderElementView: Record "MOB Ns BaseDataModel Element")
begin
_BaseOrderElementView.SetCurrentKey(HeaderValue2);
_BaseOrderElementView.Ascending(true);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...