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 8 Current »

Use this event to

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


Description

Headers affect which Orders are displayed. This event "handles" each filter.


With this event you can perform basic record filtering of Orders.
, consider OnGetCountOrders_OnInclude... instead. 


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

You want to add an additional filter to a existing header.


Example 3: Handle custom header filter



More examples

  


Version History

VersionChanges
MOB5.14Introduced
  • No labels