OnGetMoveOrders_OnSetFilterWarehouseActivity

Use this event to

Filter Warehouse Shipments to be displayed at the mobile device.

Description

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

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

Learn about Basic vs. Complex filtering


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Move", 'OnGetMoveOrders_OnSetFilterWarehouseActivity''', true, true)]
    local procedure OnGetMoveOrders_OnSetFilterWarehouseActivity(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseActivityHeader: Record "Warehouse Activity Header"; var _WhseActivityLine: Record "Warehouse Activity Line")
    begin
    end;


Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Move", 'OnGetMoveOrders_OnSetFilterWarehouseActivity''', true, true)]
    local procedure MyOnGetMoveOrders_OnSetFilterWarehouseActivity(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseActivityHeader: Record "Warehouse Activity Header"; var _WhseActivityLine: Record "Warehouse Activity Line")
    begin
        // [Scenario] Exclude orders with Assignment Date different than today if location is "MyLocation"

        if _HeaderFilter.Name = 'Location' then
            if _HeaderFilter."Value" IN ['MyLocation'then
                _WhseActivityHeader.SetFilter("Assignment Date", '=%1', WorkDate());

        // Do not handle the filter, we still want the standard Location filter to be set.
    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