Use this event to
Populate values in Orders displayed at the mobile device (derived from "Whse. Phys. Invt. Journals").
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch', '', true, true)]
procedure OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch(_WhseJnlBatch: Record "Warehouse Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
begin
end;
Example 1
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch', '', true, true)]
procedure OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch(_WhseJnlBatch: Record "Warehouse Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
begin
with _BaseOrderElement do begin
Set_DisplayLine1('Set from OnCountOnAfterSetFromWarehouseJournalBatch');
Set_HeaderValue1(Format(_WhseJnlBatch."Template Type"));
end;
end;
Example 2
// [Example]: Sort by custom tag
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch', '', true, true)]
procedure SortByCustomTag_OnGetCountOrders_OnAfterSetFromWarehouseJournalBatch(_WhseJnlBatch: Record "Warehouse Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
begin
with _BaseOrderElement do begin
Set_Sorting1(Format(_WhseJnlBatch."Template Type"));
SetValue('MyTemplateName', _WhseJnlBatch."Journal Template Name");
Set_Sorting2(GetValue('MyTemplateName'));
end;
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 |