Use this event to
Excerpt |
---|
Filter Item Journal Batches to be displayed at the mobile device. |
...
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterItemJournalBatch', '', true, true)]
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)]
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
...
Version History
Version | Changes | |
---|---|---|
MOB5. | 1014 | Introduced | as OnGetReceiveOrders_OnSetFilterWarehouseReceiptOrder
MOB5.11 | Renamed to OnGetReceiveOrders_OnSetFilterWarehouseReceipt | |
MOB5.12 | Examples updated |