Versions Compared

Key

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

Use this event to

Excerpt

Filter Warehouse Put-away or Inventory Put-aways, to be displayed at the mobile device.


Description

affects which Orders are displayed. This event "handles" each filter.

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

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

Learn about Basic vs. Complex filtering


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS ReceiveMOB WMS Put Away", 'OnGetReceiveOrdersOnGetPutAwayOrders_OnSetFilterWarehouseReceiptOnSetFilterWarehouseActivity''', true, true)]
    local procedure OnGetReceiveOrders OnGetPutAwayOrders_OnSetFilterWarehouseReceiptOnSetFilterWarehouseActivity(_HeaderFilter: Record "MOB NS Request Element"; var _WhseReceiptHeaderWhseActivityHeaderRecord "Warehouse Receipt HeaderWarehouse Activity Header"; var _WhseReceiptLine: Record "Warehouse Receipt Line"; var _IsHandled: Boolean)
begin
end;

Example 1: Modify standard header filter

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Receive", 'OnGetReceiveOrders_OnSetFilterWarehouseReceipt''', true, true)]
    procedure OnGetReceiveOrders_OnSetFilterWarehouseReceipt(_HeaderFilter: Record "MOB NS Request Element_WhseActivityLine: Record "Warehouse Activity Line"; var _WhseReceiptHeader: Record "Warehouse Receipt Header"; var _WhseReceiptLine: Record "Warehouse Receipt Line"; var _IsHandled: Boolean)
    begin
        // [Scenario] Overrule when the standard filter "Scanned Value".
        // [Scenario] Instead of searching for Item No., use the value to filter Document no.
        // [Scenario] Handle the filter, so standard filter is overruled        if _HeaderFilter.Name = 'ScannedValue' then begin
            _WhseReceiptHeader.SetRange("No.", _HeaderFilter."Value");
            _IsHandled := true;
        end;
    end;


Example

...


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

 

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"

...

 


Version History

VersionChanges
MOB5.10Introduced as OnGetReceiveOrders_OnSetFilterWarehouseReceiptOrder
MOB5.11Renamed to OnGetReceiveOrders_OnSetFilterWarehouseReceiptMOB5.12Examples updatedOnSetFilterWarehouseActivity