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 12 Current »

Use this event to

Populate values in Output Lines displayed at the mobile device (derived from routing for the Prod. Order Line and the Prod. Order Line itself).

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnProdOutput_OnAfterSetFromProductionOutput''', true, true)]
    local procedure OnLookupOnProdOutput_OnAfterSetFromProductionOutput(_ProdOrderLine: Record "Prod. Order Line"; _ProdOrderRtngLine: Record "Prod. Order Routing Line"; _TrackingSpecification: Record "Tracking Specification"; var _LookupResponseElement: Record "MOB NS WhseInquery Element")
    begin
    end;

Example

    // [Example]  Display special equipment for the item
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Lookup", 'OnLookupOnProdOutput_OnAfterSetFromProductionOutput''', true, true)]
    local procedure MyOnLookupOnProdOutput_OnAfterSetFromProductionOutput(_ProdOrderLine: Record "Prod. Order Line"; _ProdOrderRtngLine: Record "Prod. Order Routing Line"; _TrackingSpecification: Record "Tracking Specification"; var _LookupResponseElement: Record "MOB NS WhseInquery Element")
    var
        Item: Record Item;
    begin
        Item.Get(_LookupResponseElement.Get_ItemNumber());     // Get_ItemNumber() is referring to value already set for the LookupResponseElement prior to this event

        if (Item."Special Equipment Code" <> ''then begin
            _LookupResponseElement.Set_DisplayLine9('Using special equipment is mandatory');
            _LookupResponseElement.SetValue('SpecialequipmentCode''SpecialequipmentCode: ' + Item."Special Equipment Code");
        end else begin
            _LookupResponseElement.Set_DisplayLine9('');
            _LookupResponseElement.SetValue('SpecialEquipmentCode''');
        end;
    end;



More examples

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

  

Version History

VersionChanges
MOB5.22Introduced
  • No labels