Use this event to
Add filter conditions for Phys. Inventory Recording that cannot be solved by OnSetFilter-event.
Description
This event is triggered after filters have been applied to the Phys. Inventory Recording. 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 Phys. Inventory Recording can be excluded from the OrderList response by setting the parameter _IncludeInOrderList to false.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader', '', true, true)]
local procedure OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader(_PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _IncludeInOrderList: Boolean)
begin
end;
Example: Skip Item Journal Batch if Reason Code is blank
// [Example]: Skip Phys Inventory Recording if Location Code = 'MISSING GOODS'
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Phys Invt Recording", 'OnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader', '', true, true)]
local procedure MyOnGetPhysInvtRecordings_OnIncludePhysInvtRecordHeader(_PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _IncludeInOrderList: Boolean)
begin
if _PhysInvtRecordHeader."Location Code" = 'MISSING GOODS' 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.19 | Introduced |