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 2 Next »

Use this event to

Filter Item Journal Lines to be displayed as Order Lines at the mobile device.

Description

With this event you can perform basic record filtering of Order Lines.

, consider OnGetCountOrderLines_OnInclude... instead. 


Template

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


Example: Only show lines with Reason Code

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrderLines_OnSetFilterItemJournalLine''', true, true)]
    procedure MyOnGetCountOrderLines_OnSetFilterItemJournalLine(var _ItemJnlLine: Record "Item Journal Line")
    begin
        _ItemJnlLine.SetFilter("Reason Code", '<>%1''');
    end;



More examples



Version History

VersionChanges
MOB5.14Introduced



  • No labels