OnGetCountOrders_OnAfterSetFromItemJournalBatch
Use this event to
Populate values in Orders displayed at the mobile device (derived from "Phys. Inventory Journals").
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromItemJournalBatch', '', true, true)]
local procedure OnGetCountOrders_OnAfterSetFromItemJournalBatch(_ItemJnlBatch: Record "Item Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromItemJournalBatch', '', true, true)]
local procedure MyOnGetCountOrders_OnAfterSetFromItemJournalBatch(_ItemJnlBatch: Record "Item Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
begin
_BaseOrderElement.Set_DisplayLine1('Set from OnCountOnAfterSetFromItemJournalBatch');
_BaseOrderElement.Set_HeaderValue1(Format(_ItemJnlBatch."Template Type"));
end;
More examples
-
How-to: Modify DisplayLines — Additional text displayed on a List.
-
How-to: Modify HeaderLabel and HeaderValue — Modify text in the top of Order Lines
-
How-to: Sorting of Orders — Examples of sorting Order list
Version History
Version | Changes |
---|---|
MOB5.00 | Introduced |