Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

Excerpt

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;



Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orderlines" and label = "example" and label = "onaftersetfrom"

...