Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Use this event to

Populate values in Orders displayed at the mobile device (derived from "Phys. Inventory Journals").

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromItemJournalBatch''', true, true)]
    procedure OnGetCountOrders_OnAfterSetFromItemJournalBatch(_ItemJnlBatch: Record "Item Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
    begin
    end;


Example

   [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnAfterSetFromItemJournalBatch''', true, true)]
    procedure MyOnGetCountOrders_OnAfterSetFromItemJournalBatch(_ItemJnlBatch: Record "Item Journal Batch"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
    begin
        with _BaseOrderElement do begin
            Set_DisplayLine1('Set from OnCountOnAfterSetFromItemJournalBatch');
            Set_HeaderValue1(Format(_ItemJnlBatch."Template Type"));
        end;
    end;


More examples


Version History

VersionChanges
MOB5.00Introduced
  • No labels