Versions Compared

Key

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

Use this event to

Excerpt

Add steps to be displayed at the mobile device when collecting values for output Quantity.

Description

...

At the mobile device Output quantity may be collected at mobile by either...

  • after all lines have been registered at the mobile device, and "Post the order?" page was accepted.
  • when the mobile user manually select "Post".

...

  • Double-tap the Output line to collect "all steps" for Quantity, Time AND Scrap
  • Collect only "Quantity"-steps by using the promoted "Output Quantity" action at the page.

This same event will add steps to both options mentioned above (on the other hand meaning: Steps cannot conditionally be added to only one of the two options).

Steps are generally sorted by Id. Existing output steps for Quantity in the Mobile WMS is numbered 10 to 60, while subsequent existing Time-steps has Step Id 100 to 150.

  • ...If your new step should be displayed as the last Quantity-step (but prior to Time-steps), choose an Id between 70 and 99 for your step. 
  • ...If your new step should be the last step displayed at all, choose a high Id for your step, i.e. 10000


Due to the Production Output being implemented as Lookup-page each single Registration is posted right away (when Steps for the line is collected). For this reason no events exists to add "header" level steps.

See also: OnGetRegistrationConfigurationOnProdOutput_OnAfterAddStepToProductionOutputQuantity

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnGetRegistrationConfigurationOnProdOutput_OnAddStepsToProductionOutputQuantity''', true, true)]
    local procedure OnGetRegistrationConfigurationOnProdOutput_OnAddStepsToProductionOutputQuantity(var _LookupResponse: Record "MOB NS WhseInquery Element"; var _Steps: Record "MOB Steps Element")
    begin
    end;

Example

    // [Example]  Add custom "Total NetWeight" step if item is setup for NetWeight
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnGetRegistrationConfigurationOnProdOutput_OnAddStepsToProductionOutputQuantity''', true, true)]
    local procedure MyOnGetRegistrationConfigurationOnProdOutput_OnAddStepsToProductionOutputQuantity(var _LookupResponse: Record "MOB NS WhseInquery Element"; var _Steps: Record "MOB Steps Element")
    var
        Item: Record Item;
    begin
        if (Item.Get(_LookupResponse.Get_ItemNumber())) and (Item."Net Weight" <> 0then begin
            // create new step id 90 = following existing quantity steps, but prior to time steps
            _Steps.Create_DecimalStep(90'CustomTotalNetWeightGrams');
            _Steps.Set_header('Total Net Weight (Grams)');
            _Steps.Set_label('Total Net Weight (Grams):');
            _Steps.Set_helpLabel('Total Net Weight in Grams');
            _Steps.Set_minValue(0);
            _Steps.Set_maxValue(100000);
            _Steps.Set_performCalculation(true);
        end;
    end;



Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
titleMore examples
excerptTypesimple
cqllabel = "bc" and label = "productionexample" and label = "example" and label = "onaddsteps"in ("onaddsteps","or","onpostadhocregistrationonprodoutput_onaftercreateproductionjnlline")

  

Version History

VersionChanges
MOB5.22Introduced

...