Use this event to
...
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnIncludeItemJournalBatch', '', true, true)]
procedure OnGetCountOrders_OnIncludeItemJournalBatch(_ItemJournalBatch: Record "Item Journal Batch"; var _IncludeInOrderList: Boolean)
begin
end;
Example: Skip Item Journal Batch if Reason Code is blank
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Count", 'OnGetCountOrders_OnIncludeItemJournalBatch', '', true, true)]
procedure MyOnGetCountOrders_OnIncludeItemJournalBatch(_ItemJournalBatch: Record "Item Journal Batch"; var _IncludeInOrderList: Boolean)
begin
if _ItemJournalBatch."Reason Code" = '' then
_IncludeInOrderList := false;
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...