-
Notifications
You must be signed in to change notification settings - Fork 686
Description
Why do you need this change?
We need to execute custom logic on the "Prod. Order Component" record immediately before it is modified by the "Create Subcontr.Transf. Order" report (12152)
Describe the request
We request the addition of a new Record var in the OnCheckPurchLineOnAfterTransferLineInsert IntegrationEvent within report 12152 "Create Subcontr.Transf. Order".
Original IntegrationEvent:
[IntegrationEvent(true, false)]
local procedure OnCheckPurchLineOnAfterTransferLineInsert(var TransferHeader: Record "Transfer Header"; var TransferLine: Record "Transfer Line"; PurchaseLine: Record "Purchase Line")
begin
end;
Requested change:
[IntegrationEvent(true, false)]
local procedure OnCheckPurchLineOnAfterTransferLineInsert(var TransferHeader: Record "Transfer Header"; var TransferLine: Record "Transfer Line"; PurchaseLine: Record "Purchase Line"; var ProdOrderComponent: Record "Prod. Order Component")
begin
end;
Original Code:
OnCheckPurchLineOnAfterTransferLineInsert(TransferHeader, TransferLine, PurchLine);
Requested Change:
OnCheckPurchLineOnAfterTransferLineInsert(TransferHeader, TransferLine, PurchLine, ProdOrderComponent);
Internal work item: AB#612260