Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Use this event to

Add filter conditions for Production Order Lines that cannot be solved by OnSetFilter-event.

 
Description

This event is triggered after filters have been applied to the Production Order Lines. The event should be used only when it is not possible to use OnSetFilter-event to solve if the Prod. Order Lines should be included in the OrderList response.

The Production Order Lines can be excluded from the OrderList response by setting the parameter _IncludeInOrderList to false.


Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnIncludeProdOrderLine''', true, true)]
    local procedure OnGetProdOrderLines_OnIncludeProdOrderLine(_ProdOrderLine: Record "Prod. Order Line"; _ProductionOrder: Record "Production Order"; var _IncludeInOrderList: Boolean)
    begin
    end;

Example

    // [Example]   Hide Production Order Lines if assigned bin code is blocked for movement
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnIncludeProdOrderLine''', true, true)]
    local procedure MyOnGetProdOrderLines_OnIncludeProdOrderLine(_ProdOrderLine: Record "Prod. Order Line"; _ProductionOrder: Record "Production Order"; var _IncludeInOrderList: Boolean)
    var
        Bin: Record Bin;
    begin
        if (_ProdOrderLine."Bin Code" <> '') and (Bin.Get(_ProdOrderLine."Location Code", _ProdOrderLine."Bin Code")) and (Bin."Block Movement" <> Bin."Block Movement"::" "then
            _IncludeInOrderList := false;
    end;


More examples

There are no items with the selected labels at this time.


Version History

VersionChanges
MOB5.22Introduced
  • No labels