Use this event to
Excerpt |
---|
Handle collected values from Production Output steps. |
...
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.
...
[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.GetValue('MyCustomStopCode', true));
if StopCode <> '' then
_ProductionJnlLine.Validate("Stop Code", StopCode);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...