Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

Excerpt

Populate values in OrderList displayed at the mobile device (derived from Prod. Order Lines).



Each From each production order may produce multiple items may be produced (the "Production Order Lines").  Hence these . Therefore, the Production OrderList displays information from table "Prod. Order Line", not from "Production Order".

Consequently "OnGetProdOrderLines" events - despite the naming - are for the "toplevel" in an OrderList/OrderLines page, elsewhere named the "OrderList".

To customize the "line" level at the mobile device, see: Production Consumption and Production Output

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnAfterSetFromProdOrderLine''', true, true)]
    local procedure OnGetProdOrderLines_OnAfterSetFromProdOrderLine(_ProdOrderLine: Record "Prod. Order Line"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
    begin
    end;

Example

    // [Example]  Populate custom tag "NetWeightPerBaseUoM" from item card
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Production Consumption", 'OnGetProdOrderLines_OnAfterSetFromProdOrderLine''', true, true)]
    local procedure MyOnGetProdOrderLines_OnAfterSetFromProdOrderLine(_ProdOrderLine: Record "Prod. Order Line"; var _BaseOrderElement: Record "MOB Ns BaseDataModel Element")
    var
        Item: Record Item;
        MobWmsToolbox: Codeunit "MOB WMS Toolbox";
    begin
        if Item.Get(_ProdOrderLine."Item No."then
            _BaseOrderElement.SetValue('NetWeightPerBaseUoM', MobWmsToolbox.Decimal2TextAsXmlFormat(Item."Net Weight"));
    end;


Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "production" and label = "example" and label = "onaftersetfrom"

...