Use this event to
Excerpt |
---|
Add filter conditions for Warehouse Journal Batch that cannot be solved by OnSetFilter-event. |
...
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;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...