...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Use this event to
Excerpt |
---|
Filter Warehouse Shipment Journal Lines to be displayed as Order Lines at the mobile device. |
Description
With this event you can perform basic record filtering of Order LinesOrders.
If you have complex conditions, considerOnGetShipOrderLines OnGetCountOrderLines_OnInclude... instead instead.
Learn about Basic vs. Complex filtering
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ShipMOB WMS Count", 'OnGetShipOrderLinesOnGetCountOrderLines_OnSetFilterWarehouseShipmentLineOnSetFilterWarehouseJournalLine', '', true, true)]
procedure OnGetShipOrderLines OnGetCountOrderLines_OnSetFilterWarehouseShipmentLineOnSetFilterWarehouseJournalLine(var _WhseShipmentLineWhseJnlLine: Record "Warehouse Shipment LineWarehouse Journal Line")
begin
end;
Example
...
: Only show lines with Reason Code
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS ShipMOB WMS Count", 'OnGetShipOrderLinesOnGetCountOrderLines_OnSetFilterWarehouseShipmentLineOnSetFilterWarehouseJournalLine', '', true, true)]
procedure OnGetShipOrderLines MyOnGetCountOrderLines_OnSetFilterWarehouseShipmentLineOnSetFilterWarehouseJournalLine(var _WhseShipmentLineWhseJnlLine: Record "Warehouse Shipment LineWarehouse Journal Line")
begin
_WhseShipmentLineWhseJnlLine.SetRangeSetFilter(Weight"Reason Code", 0'<>%1', 1000'');
end;
Filter by label (Content by label) showLabels false showSpace false sort title title More examples excerptType simple cql label = "bc" and label = "orderlines" and label = "example" and label = "onsetfilter"
...
Version History
Version | Changes |
---|---|
MOB5.1014 | Introduced |