Use this event to
Excerpt |
---|
Add filter conditions for Warehouse Activity Headers that cannot be solved by OnSetFilter-event. |
...
Description
This event is triggered after filters have been applied to the Warehouse Activity 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.
The Warehouse Activity Header can be excluded from the OrderList response by setting the parameter _IncludeInOrderList to false.
Learn about Basic vs. Complex filtering
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Put Away", 'OnGetPutAwayOrders_OnIncludeWarehouseActivityHeader', '', true, true)]
local procedure OnGetPutAwayOrders_OnIncludeWarehouseActivityHeader(_WhseActHeader: Record "Warehouse Activity Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
begin
end;
Example:
...
Exclude Inventory Picks when the source
...
document (the purchase order) is not released
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Put Away", 'OnGetPutAwayOrders_OnIncludeWarehouseActivityHeader', '', true, true)]
local procedure MyOnGetPutAwayOrders_OnIncludeWarehouseActivityHeader(_WhseActHeader: Record "Warehouse Activity Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
var
PurchaseHeader: Record "Purchase Header";
MobToolbox: Codeunit "MOB Toolbox";
begin
if (_WhseActHeader.Type = _WhseActHeader.Type::"Invt. Put-away") and (_WhseActHeader."Source Document" = _WhseActHeader."Source Document"::"Purchase Order") then
if PurchaseHeader.Get(_WhseActHeader."Source Subtype", _WhseActHeader."Source No.") and (MobToolbox.AsInteger(PurchaseHeader.Status) < MobToolbox.AsInteger(PurchaseHeader.Status::Released)) then
_IncludeInOrderList := false;
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...