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 the mobile device.

...

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterWarehouseJournalBatch''', true, true)]
    procedure OnGetCountOrders_OnSetFilterWarehouseJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseJnlBatch: Record "Warehouse Journal Batch"; var _WhseJnlLine: Record "Warehouse Journal Line")
    begin
    end;


Example

[EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Count", 'OnGetCountOrders_OnSetFilterWarehouseJournalBatch''', true, true)]
    procedure MyOnGetCountOrders_OnSetFilterWarehouseJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseJnlBatch: Record "Warehouse Journal Batch"; var _WhseJnlLine: Record "Warehouse Journal Line")
    begin
        // [Scenario] Handle custom 'Location' Header Filter Field
        // [Scenario] Filter Warehouse Journal Batch on chosen Location

        if _HeaderFilter.Name = 'Location' then begin
            _WhseJnlBatch.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

  • See 

...



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

  

...


Version History

VersionChanges
MOB5.14Introduced

...