Versions Compared

Key

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

Use this event to

Excerpt

Handle collected values from Production Output steps.

Description

This event is used to handle collected steps for Production Output and is executed as soon as the final Step is collected on the mobile device.

Examples of use could be:

...

Note
titleCommit

Database transactions in this event is committed to database prior to calling standard BC posting routines. Your customized code must be structured accordingly.

However, since the Production Journal is used for the posting, all journal lines for the UserId is consistently disposed and recreated between each posting attempt.


Production Output is implemented as Lookup-page, as opposed to the Production Consumption (being the OrderLines-page in an OrderList/OrderLines service).
For this reason events is named consistently with other OnLookup- / OnAdhocRegistration-events, rather than with Production Consumption-events.

...

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnProdOutput_OnAfterCreateProductionJnlLine''', true, true)]
    local procedure OnPostAdhocRegistrationOnProdOutput_OnAfterCreateProductionJnlLine(var _RequestValues: Record "MOB NS Request Element"; var _ProductionJnlLine: Record "Item Journal Line")
    begin
    end;

Example

    // [Example]  Populate Production Journal "Stop Code" from custom step
    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnProdOutput_OnAfterCreateProductionJnlLine''', true, true)]
    local procedure MyOnPostAdhocRegistrationOnProdOutput_OnAfterCreateProductionJnlLine(var _RequestValues: Record "MOB NS Request Element"; var _ProductionJnlLine: Record "Item Journal Line")
    var
        StopCode: Code[10];
    begin
        Evaluate(StopCode, _RequestValues.GetValueGetValueOrContextValue('MyCustomStopCode', true));
        if StopCode <> '' then
            _ProductionJnlLine.Validate("Stop Code", StopCode);
    end;



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

...

VersionChanges
MOB5.22Introduced


GetValueOrContextValue