Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

...

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


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

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

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ship", 'OnGetShipOrders_OnSetFilterWarehouseShipment''', true, true)]
    local 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)]
    local procedure MyOnGetShipOrders_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

...

Example 3: Handle custom header filter


Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orders" and label = "example" and label in ("onsetfilter","ongetreferencedata_onaddheaderconfigurations")

...