Use this event to
Excerpt |
---|
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
with _BaseOrderElement do begin
Set_BaseOrderElement.Set_DisplayLine1('Set from OnCountOnAfterSetFromItemJournalBatch');
Set _BaseOrderElement.Set_HeaderValue1(Format(_ItemJnlBatch."Template Type"));
end;
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...