...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Excerpt |
---|
Add filter conditions for Item Journal Batch Phys. Inventory Recording that cannot be solved by OnSetFilter-event. |
Description
This event is triggered after filters have been applied to the Item Journal Batch. 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 Item Journal Batch Phys. Inventory Recording 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 CountMOB WMS Phys Invt Recording", 'OnGetCountOrdersOnGetPhysInvtRecordings_OnIncludeItemJournalBatchOnIncludePhysInvtRecordHeader', '', truetrue, truetrue)]
local procedure OnGetCountOrders OnGetPhysInvtRecordings_OnIncludeItemJournalBatchOnIncludePhysInvtRecordHeader(_ItemJournalBatch: Record "Item Journal Batch"; var PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
begin
end;
Example: Skip Item Journal Batch if Reason Code is blank
// [Example]: Skip Item Journal Batch if Reason Code is blank
Skip Phys Inventory Recording if Location Code = 'MISSING GOODS'
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS CountMOB WMS Phys Invt Recording", 'OnGetCountOrdersOnGetPhysInvtRecordings_OnIncludeItemJournalBatchOnIncludePhysInvtRecordHeader', '', truetrue, truetrue)]
local procedure MyOnGetCountOrders MyOnGetPhysInvtRecordings_OnIncludeItemJournalBatch(_ItemJournalBatch: Record "Item Journal Batch"; var _IncludeInOrderList: Boolean)
begin
if _ItemJournalBatch."Reason Code" = '' then
_IncludeInOrderList := false;
OnIncludePhysInvtRecordHeader(_PhysInvtRecordHeader: Record "Phys. Invt. Record Header"; var _HeaderFilters: Record "MOB NS Request Element"; var _IncludeInOrderList: Boolean)
begin
if _PhysInvtRecordHeader."Location Code" = 'MISSING GOODS'then
_IncludeInOrderList := false;
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.1419 | Introduced |