OnGetCountOrders_OnIncludeWarehouseJournalBatch
Use this event to
Add filter conditions for Warehouse Journal Batch that cannot be solved by OnSetFilter-event.
Description
This event is triggered after filters have been applied to the Warehouse Journal Batch. 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 Journal Batch 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 Count", 'OnGetCountOrders_OnIncludeWarehouseJournalBatch', '', true, true)]
local procedure OnGetCountOrders_OnIncludeWarehouseJournalBatch(_WhseJournalBatch: Record "Warehouse Journal Batch"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
begin
end;
Example: Skip Warehouse Journal Batch if no user has been assigned
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnIncludeWarehouseJournalBatch', '', true, true)]
local procedure MyOnGetCountOrders_OnIncludeWarehouseJournalBatch(_WhseJournalBatch: Record "Warehouse Journal Batch"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
begin
if _WhseJournalBatch."Assigned User ID" = '' then
_IncludeInOrderList := false;
end;
More examples
-
Case: Filter Receipts based on Comments — The user wants to filter Receipts on whether they have comments or not
-
How-to: Filter Orders - Complex — Examples for including/excluding orders using complex per-document filtering
Version History
Version | Changes |
---|---|
MOB5.14 | Introduced |