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

Use this event to

Filter Warehouse Shipments to be displayed at the mobile device.


Description

affects which Orders are displayed. This event "handles" each filter.


With this event you can perform basic record filtering of Orders.
, consider OnGetShipOrders_OnInclude... instead. 


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ship", 'OnGetShipOrders_OnSetFilterWarehouseShipment''', true, true)]
    procedure OnGetShipOrders_OnSetFilterWarehouseShipment(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseShipmentHeader: Record "Warehouse Shipment Header"; var _WhseShipmentLine: Record "Warehouse Shipment Line")
    begin
    end;


Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ship", 'OnGetShipOrders_OnSetFilterWarehouseShipment''', true, true)]
    procedure OnGetShipOrders_OnSetFilterWarehouseShipment(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseShipmentHeader: Record "Warehouse Shipment Header"; var _WhseShipmentLine: Record "Warehouse Shipment Line")
    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
            _WhseShipmentHeader.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

See (Legacy) How-to: Create header Pre v5.14



More examples

  

 

Version History

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