Use this event to
Excerpt |
---|
Handle collected values from Registrations (“Line Steps”) for indented lines representing 'Consumption' |
...
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 Assembly", 'OnPostAssemblyOrder_OnHandleRegistrationForAssemblyLine', '', true, true)]
local procedure OnPostAssemblyOrder_OnHandleRegistrationForAssemblyLine(var _Registration: Record "MOB WMS Registration"; var _AssemblyLine: Record "Assembly Line"; var _NewReservationEntry: Record "Reservation Entry")
begin
end;
Example
// [Example] Verify custom step 'CustomNetWeightGrams' is in the Xml file and can be read from 'MOB WMS Registration' later
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Assembly", 'OnPostAssemblyOrder_OnHandleRegistrationForAssemblyLine', '', true, true)]
local procedure MyOnPostAssemblyOrder_OnHandleRegistrationForAssemblyLine(var _Registration: Record "MOB WMS Registration"; var _AssemblyLine: Record "Assembly Line"; var _NewReservationEntry: Record "Reservation Entry")
begin
// Example: Throw error if custom step is not in Xml
// Step was created in OnGetAssemblyOrderLines_OnAddStepsToConsumptionLine
_Registration.GetValueAsDecimal('CustomNetWeightGrams', true);
// Add your custom code here...
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...