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

Use this event to

Filter Warehouse/Inventory -Picks to be displayed on the mobile device.


Description

Headers affect which Orders are displayed. This event "handles" each filter.


With this event you can perform basic record filtering of Orders.

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

Learn about Basic vs. Complex filtering



Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Pick", 'OnGetPickOrders_OnSetFilterWarehouseActivity''', true, true)]
    local procedure MyOnGetPickOrders_OnSetFilterWarehouseActivity01(_HeaderFilter: Record "MOB NS Request Element"; var _WhseActHeader: Record "Warehouse Activity Header"; var _WhseActLine: Record "Warehouse Activity Line"; var _IsHandled: Boolean)
    begin
    end;


Example 1: Modify standard header filter

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Pick", 'OnGetPickOrders_OnSetFilterWarehouseActivity''', true, true)]
    local procedure MyOnGetPickOrders_OnSetFilterWarehouseActivity02(_HeaderFilter: Record "MOB NS Request Element"; var _WhseActHeader: Record "Warehouse Activity Header"; var _WhseActLine: Record "Warehouse Activity Line"; var _IsHandled: Boolean)
    begin
        // [Scenario] Overrule when the standard filter "Scanned Value".
        // [Scenario] Instead of searching for Item No., use the value to filter Document no.
        // [Scenario] Handle the filter, so standard filter is overruled

        if _HeaderFilter.Name = 'ScannedValue' then begin
            _WhseActHeader.SetRange("No.", _HeaderFilter."Value");
            _IsHandled := true;
        end;
    end;


Example 2: Add custom filters to Standard headers

You want to add an additional filter to a existing header.


Example 3: Handle custom header filter



More examples

  


Version History

VersionChanges
MOB5.10Introduced as OnGetReceiveOrders_OnSetFilterWarehouseReceiptOrder
MOB5.11Renamed to OnGetReceiveOrders_OnSetFilterWarehouseReceipt
MOB5.12Examples updated


  • No labels