Versions Compared

Key

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

Use this event to

Excerpt

Filter Production Order Lines to be displayed at the mobile device.



Description

WORK IN PROGRESS

Affects which Production Order Lines are displayed. This event "handles" each filter.

...

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Move", 'OnGetMoveOrders_OnSetFilterWarehouseActivity''', true, true)]
    procedure OnGetMoveOrders_OnSetFilterWarehouseActivity(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseActivityHeader: Record "Warehouse Activity Header"; var _WhseActivityLine: Record "Warehouse Activity Line")
    begin
    end;



Example

  [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Move", 'OnGetMoveOrders_OnSetFilterWarehouseActivity''', true, true)]
    procedure OnGetMoveOrders_OnSetFilterWarehouseActivity(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Booleanvar _WhseActivityHeader: Record "Warehouse Activity Header"; var _WhseActivityLine: Record "Warehouse Activity Line")
    begin
        // [Scenario] Exclude orders with Assignment Date different than today if location is "MyLocation"


        if _HeaderFilter.Name = 'Location' then
            if _HeaderFilter."Value" IN ['MyLocation'then
                _WhseActivityHeader.SetFilter("Assignment Date", '=%1', WorkDate());

        // Don't handle the filter, we still want the standard Location filter to be set.
    end;


Example 2: Add custom filters to Standard headers

...