Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

...

The Item Journal Batch can be excluded from the OrderList response by setting the parameter _IncludeInOrderList to false.

Learn about Basic vs. Complex filtering 


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnIncludeItemJournalBatch''', true, true)]
    local procedure OnGetCountOrders_OnIncludeItemJournalBatch(_ItemJournalBatch: Record "Item Journal Batch"; 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
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnIncludeItemJournalBatch''', true, true)]
    local procedure MyOnGetCountOrders_OnIncludeItemJournalBatch(_ItemJournalBatch: Record "Item Journal Batch"; var _HeaderFilters: Record "MOB NS Request Element";  var _IncludeInOrderList: Boolean)
    begin
        if _ItemJournalBatch."Reason Code" = '' then
            _IncludeInOrderList := false;
    end;



Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "orders" and label = "example" and label = "oninclude"

...