...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Excerpt |
---|
Filter Warehouse Shipments Item Journal Batches 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.
, consider OnGetShipOrdersOnGetCountOrders_OnInclude... instead.
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ShipMOB WMS Count", 'OnGetShipOrdersOnGetCountOrders_OnSetFilterWarehouseShipmentOnSetFilterItemJournalBatch', '', true, true)]
procedure OnGetShipOrders OnGetCountOrders_OnSetFilterWarehouseShipmentOnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Boolean; var _WhseShipmentHeaderItemJnlBatch: Record "Warehouse Shipment HeaderItem Journal Batch"; var _WhseShipmentLineItemJnlLine: Record "Warehouse Shipment LineItem Journal Line")
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ShipMOB WMS Count", 'OnGetShipOrdersOnGetCountOrders_OnSetFilterWarehouseShipmentOnSetFilterItemJournalBatch', '', true, true)]
procedure OnGetShipOrders MyOnGetCountOrders_OnSetFilterWarehouseShipmentOnSetFilterItemJournalBatch(_HeaderFilter: Record "MOB NS Request Element"; var _IsHandled: Boolean; var _WhseShipmentHeaderItemJnlBatch: Record "Warehouse Shipment HeaderItem Journal Batch"; var _WhseShipmentLineItemJnlLine: Record "Warehouse Shipment LineItem Journal Line")
begin
// [Scenario] Overrule when the standard filter "Scanned Value". Handle custom 'Location' Header Filter Field
// [Scenario] Instead of searching for Item No., use the value to filter Document no.
// [Scenario] Handle the filter, so standard filter is overruled Filter Item Journal Batch on chosen Location, by setting filter on Item Journal Line
if _HeaderFilter.Name = 'ScannedValueLocation' then begin
_WhseShipmentHeaderItemJnlLine.SetRange("No.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 How-to: Create custom Orders header v5.00
...
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.10 | Introduced as OnGetReceiveOrders_OnSetFilterWarehouseReceiptOrder |
MOB5.11 | Renamed to OnGetReceiveOrders_OnSetFilterWarehouseReceipt |
MOB5.12 | Examples updated |
...