Use this event to
...
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. |
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Production Consumption", 'OnPostProdConsumption_OnHandleRegistrationForProductionJnlLine', '', true, true)]
local procedure OnPostProdConsumption_OnHandleRegistrationForProductionJnlLine(var _Registration: Record "MOB WMS Registration"; var _ProductionJnlLine: Record "Item Journal Line")
begin
end;
Example
// [Example] Verify quantity at Registration will not be rounded during posting process but can be posted exactly as-is
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Production Consumption", 'OnPostProdConsumption_OnHandleRegistrationForProductionJnlLine', '', true, true)]
local procedure MyOnPostProdConsumption_OnHandleRegistrationForProductionJnlLine(var _Registration: Record "MOB WMS Registration"; var _ProductionJnlLine: Record "Item Journal Line")
var
UoMMgt: Codeunit "Unit of Measure Management";
begin
_Registration.TestField(Quantity, Round(_Registration.Quantity, UoMMgt.QtyRndPrecision()));
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...