Versions Compared

Key

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

Use this event to

Excerpt

Filter Item Journal Batches to be displayed at on the mobile device.


Description

...

With this event you can perform basic record filtering of Orders.

If you have complex conditions, consider consider OnGetCountOrders_OnInclude... instead instead

Learn about Basic vs. Complex filtering


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterItemJournalBatch''', true, true)]
    local procedure OnGetCountOrders_OnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _ItemJnlBatch: Record "Item Journal Batch"; var _ItemJnlLine: Record "Item Journal Line")
    begin
    end;


Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterItemJournalBatch''', true, true)]
    local procedure MyOnGetCountOrders_OnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _ItemJnlBatch: Record "Item Journal Batch"; var _ItemJnlLine: Record "Item Journal Line")
    begin
        // [Scenario] Handle custom 'Location' Header Filter Field
        // [Scenario] Filter Item Journal Batch on chosen Location, by setting filter on Item Journal Line

        if _HeaderFilter.Name = 'Location' then begin
            _ItemJnlLine.SetRange("Location Code", _HeaderFilter."Value");
            _IsHandled := true;
        end;
    end;


Example 2: Add custom filters to Standard headers

...

Example 3: Handle custom header filter



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

...