You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Through this issue we would like to request event publisher OnBeforeUpdateAssociatedSalesLine to be added to Codeunit 333 Req. Wksh.-Make Order with the following signature:
[IntegrationEvent(false, false)]
localprocedure OnBeforeUpdateAssociatedSalesLine(var PurchOrderLine: Record "Purchase Line"; var RequisitionLine: Record "Requisition Line"; var IsHandled: Boolean)beginend;
which would be called as follows from InsertPurchOrderLine:
if ReqLine2.Reserve then
ReserveBindingOrderToPurch(PurchOrderLine, ReqLine2);
IsHandled := false; //new
OnBeforeUpdateAssociatedSalesLine(PurchOrderLine, ReqLine2, IsHandled); //newifnot IsHandled then//newif PurchOrderLine."Drop Shipment" or PurchOrderLine."Special Order" thenbegin
Additional context
We would like to be able to connect the special order purchase line to a service line.
Internal work item: AB#558867
The text was updated successfully, but these errors were encountered:
Describe the request
Dear ALAppExtensions team,
Through this issue we would like to request event publisher
OnBeforeUpdateAssociatedSalesLine
to be added to Codeunit 333 Req. Wksh.-Make Order with the following signature:which would be called as follows from
InsertPurchOrderLine
:Additional context
We would like to be able to connect the special order purchase line to a service line.
Internal work item: AB#558867
The text was updated successfully, but these errors were encountered: