OnGetCountOrders_OnSetFilterItemJournalBatch
Use this event to
Filter Item Journal Batches to be displayed on the mobile device.
Description
With this event you can perform basic record filtering of Orders.
If you have complex conditions, consider OnGetCountOrders_OnInclude... instead.
Learn about Basic vs. Complex filtering
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterItemJournalBatch', '', true, true)]
local procedure OnGetCountOrders_OnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Boolean; var _ItemJnlBatch: Record "Item Journal Batch"; var _ItemJnlLine: Record "Item Journal Line")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterItemJournalBatch', '', true, true)]
local procedure MyOnGetCountOrders_OnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Boolean; var _ItemJnlBatch: Record "Item Journal Batch"; var _ItemJnlLine: Record "Item Journal Line")
begin
// [Scenario] Handle custom 'Location' Header Filter Field
// [Scenario] Filter Item Journal Batch on chosen Location, by setting filter on Item Journal Line
if _HeaderFilter.Name = 'Location' then begin
_ItemJnlLine.SetRange("Location Code", _HeaderFilter."Value");
_IsHandled := true;
end;
end;
Example 2: Add custom filters to Standard headers
You want to add an additional filter to a existing header.
Example 3: Handle custom header filter
More examples
-
Case: Filter Inventory Movements of Asmbl. Orders for specific Sales Order — The user wants to filter Warehouse Documents on specific Sales Order number, using the existing Planned Movements function.
-
How-to: Filter Orders — Examples for including/excluding orders using basic filtering
-
How-to: Filter Orders - Complex — Examples for including/excluding orders using complex per-document filtering
Version History
Version | Changes |
---|---|
MOB5.14 | Introduced |