Versions Compared

Key

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

Use this event to

Excerpt

Add filter conditions for Warehouse Activity Headers that cannot be solved by OnSetFilter-event.

...

Template

 [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ship", 'OnGetShipOrders_OnIncludeWarehouseShipmentHeader''', true, true)]
    procedure OnGetShipOrders_OnIncludeWarehouseShipmentHeader(_WhseShipmentHeader: Record "Warehouse Shipment Header"; var _IncludeInOrderList: Boolean)
    begin
    end;


Example: Do

...

not include in order list if Customer is blocked.

// [Example]: Do not include in order list if Customer is blocked.
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Ship", 'OnGetShipOrders_OnIncludeWarehouseShipmentHeader''', true, true)]
    procedure OnGetShipOrders_OnIncludeWarehouseShipmentHeader(_WhseShipmentHeader: Record "Warehouse Shipment Header"; var _IncludeInOrderList: Boolean)
    var
        WhseShipmentLine: Record "Warehouse Shipment Line";
        SalesHeader: Record "Sales Header";
        Customer: Record Customer;
    begin
        // Loop filtered Shipments
        if _WhseShipmentHeader.FindSet() then
            repeat
                // Loop lines
                WhseShipmentLine.SetFilter("No.", _WhseShipmentHeader."No.");

                if WhseShipmentLine.FindSet() then
                    repeat
                        if WhseShipmentLine."Source Document" = WhseShipmentLine."Source Document"::"Sales Order" then begin
                            SalesHeader.Get(WhseShipmentLine."Source Subtype", WhseShipmentLine."Source No.");
                            // Exclude the Shipment if Customer is blocked
                            if Customer.Get(SalesHeader."Sell-to Customer No.") and not (Customer.Blocked < Customer.Blocked::Allthen
                                _IncludeInOrderList := false;
                        end;
                    until (WhseShipmentLine.Next() 0) or not _IncludeInOrderList;

            until _WhseShipmentHeader.Next() 0;
    end;

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orders" and label = "example" and label = "oninclude"

...