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 31 Current »

Use this event to

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

Description

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

If you have complex conditions, consider OnGetReceiveOrderLines_OnInclude... instead. 

Learn about Basic vs. Complex filtering



Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrderLines_OnSetFilterTransferLine''', true, true)]
    local procedure OnGetReceiveOrderLines_OnSetFilterTransferLine(var _TransferLine: Record "Transfer Line")
    begin
    end;


Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrderLines_OnSetFilterTransferLine''', true, true)]
    local procedure MyOnGetReceiveOrderLines_OnSetFilterTransferLine(var _TransferLine: Record "Transfer Line")
    begin
        // [Scenario] Apply addition filter to excluding order lines (and orders) with expected receipt date different than today
        _TransferLine.SetFilter("Receipt Date", '=%1', WorkDate());
    end;


 

More examples



Version History

VersionChanges
MOB5.10Introduced as OnGetReceiveOrderLines_OnSetFilterTransferOrderLine
MOB5.11Renamed to OnGetReceiveOrderLines_OnSetFilterTransferLine


  • No labels