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

Use this event to

Filter Warehouse 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_OnSetFilterWarehouseJournalLine''', true, true)]
    procedure OnGetCountOrderLines_OnSetFilterWarehouseJournalLine(var _WhseJnlLine: Record "Warehouse Journal Line")
    begin
    end;


Example: Only show lines with Reason Code

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrderLines_OnSetFilterWarehouseJournalLine''', true, true)]
    procedure MyOnGetCountOrderLines_OnSetFilterWarehouseJournalLine(var _WhseJnlLine: Record "Warehouse Journal Line")
    begin
        _WhseJnlLine.SetFilter("Reason Code", '<>%1''');
    end;



More examples



Version History

VersionChanges
MOB5.14Introduced



  • No labels