Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Use this event to

Add filter conditions for Item Journal Batch that cannot be solved by OnSetFilter-event.

 

Description

This event is triggered after filters have been applied to the Item Journal Batch. 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 can be excluded from the OrderList response by setting the parameter _IncludeInOrderList to false.


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"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::CodeunitCodeunit::"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;



More examples


Version History

VersionChanges
MOB5.14Introduced
  • No labels