Use this event to
Add filter conditions for Warehouse Activity Lines that cannot be solved by OnSetFilter-event.
Description
This event is triggered after filters have been applied to the Warehouse Shipment Line. The event should be used only when it is not possible to use OnSetFilter-event to solve if the Line should be included in the OrderLines response.
The Warehouse Shipment Line can be excluded from the OrderLines response by setting the parameter _IncludeInOrderLines to false.
Template:
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Ship", 'OnGetShipOrderLines_OnIncludeWarehouseShipmentLine', '', true, true)]
procedure OnGetShipOrderLines_OnIncludeWarehouseShipmentLine(_WhseShipmentLine: Record "Warehouse Shipment Line"; var _IncludeInOrderLines: Boolean)
begin
end;
Example: Don't include items that are blocked
// [Example]: Don't include items that are blocked
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Ship", 'OnGetShipOrderLines_OnIncludeWarehouseShipmentLine', '', true, true)]
procedure OnGetShipOrderLines_OnIncludeWarehouseShipmentLine(_WhseShipmentLine: Record "Warehouse Shipment Line"; var _IncludeInOrderLines: Boolean)
var
Item: Record Item;
begin
if Item.Get(_WhseShipmentLine."Item No.") and Item.Blocked then
_IncludeInOrderLines := false;
end;
More examples
-
How-to: Filter Order Lines — Examples of filtering Order Lines .
Version History
Version | Changes |
---|---|
MOB5.13 | Introduced |