Versions Compared

Key

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

Use this event to

Excerpt

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

 DescriptionDescription

This event is triggered after filters have been applied to the Warehouse Receipt Header. The event should be used only when it is not possible to use OnSetFilter-event to solve if the Header should be included in the OrderList response.

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Pick", 'OnGetPickOrders_OnIncludeWarehouseActivityHeader''', true, true)]
    local procedure OnGetPickOrders_OnIncludeWarehouseActivityHeader(_WhseActHeader: Record "Warehouse Activity Header"; var _HeaderFilters: Record "MOB NS Request Element";  var _IncludeInOrderList: Boolean)
    begin
    end;


Example

    // [Example]: Do not include Invt. Picks when the source doc.(Sales Order) is not released.
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Pick", 'OnGetPickOrders_OnIncludeWarehouseActivityHeader''', true, true)]
    local procedure MyOnGetPickOrders_OnIncludeWarehouseActivityHeader(_WhseActHeader: Record "Warehouse Activity Header";  var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
    var
        SalesHeader: Record "Sales Header";
        MobToolbox: Codeunit "MOB Toolbox";
    begin
        if (_WhseActHeader.Type = _WhseActHeader.Type::"Invt. Pick") and (_WhseActHeader."Source Document" = _WhseActHeader."Source Document"::"Sales Order"then
            if SalesHeader.Get(_WhseActHeader."Source Subtype", _WhseActHeader."Source No.") and (MobToolbox.AsInteger(SalesHeader.Status< MobToolbox.AsInteger(SalesHeader.Status::Released)) then
                _IncludeInOrderList := false;
    end;


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

...