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 | ||
---|---|---|
| ||
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.
The parallel for this event in Production Consumption would be the the OnPostProdConsumption_OnHandleRegistrationForProductionJnlLine event.
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"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::Codeunit, Codeunit::"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) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Version | Changes |
---|---|
MOB5.22 | Introduced |
GetValueOrContextValue