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 Order Lines displayed at the mobile device (derived from "Phys. Inventory Journals").

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrderLines_OnAfterSetFromItemJournalLine''', true, true)]
    procedure OnGetCountOrderLines_OnAfterSetFromItemJournalLine(_ItemJnlLine: Record "Item Journal Line"; var _BaseOrderLineElement: Record "MOB Ns BaseDataModel Element")
    begin
    end;

Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrderLines_OnAfterSetFromItemJournalLine''', true, true)]
    procedure OnGetCountOrderLines_OnAfterSetFromItemJournalLine(_ItemJnlLine: Record "Item Journal Line"; var _BaseOrderLineElement: Record "MOB Ns BaseDataModel Element")
    begin
        with _BaseOrderLineElement do begin
            Set_DisplayLine1('Set from OnCountOnAfterSetFromItemJournalLine');
            SetValue('MyOnCountOnAfterSetFromItemJournalLine''OnCountOnAfterSetFromItemJournalLine Custom Tag for Item Number ' + _BaseOrderLineElement.Get_ItemNumber());
        end;
    end;



More examples


Version History

VersionChanges
MOB5.00Introduced


  • No labels