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
We would like var SalesHeader added to the following event.
Original:
Codeunit 80 Sales Post - procedure PostUpdateReturnReceiptLine - Event OnAfterPostUpdateReturnReceiptLine
local procedure PostUpdateReturnReceiptLine()
var
SalesOrderLine: Record "Sales Line";
ReturnRcptLine: Record "Return Receipt Line";
TempSalesLine: Record "Sales Line" temporary;
IsHandled: Boolean;
begin
...
OnAfterPostUpdateReturnReceiptLine(TempSalesLine);
[IntegrationEvent(true, false)]
local procedure OnAfterPostUpdateReturnReceiptLine(var TempSalesLine: Record "Sales Line" temporary)
begin
end;
Change:
Codeunit 80 - Sales Post - procedure PostUpdateReturnReceiptLine - Event OnAfterPostUpdateReturnReceiptLine
local procedure PostUpdateReturnReceiptLine(var SalesHeader: Record "Sales Header")
// similar to PostUpdateInvoiceLine
var
SalesOrderLine: Record "Sales Line";
ReturnRcptLine: Record "Return Receipt Line";
TempSalesLine: Record "Sales Line" temporary;
IsHandled: Boolean;
begin
...
OnAfterPostUpdateReturnReceiptLine(TempSalesLine, SalesHeader);
[IntegrationEvent(true, false)]
procedure OnAfterPostUpdateReturnReceiptLine(var TempSalesLine: Record "Sales Line" temporary; var SalesHeader: Record "Sales Header")
begin
end;
Additional context
Post Invoice with Return Receipts
Internal work item: AB#523918
The text was updated successfully, but these errors were encountered:
Hello @MH1612
Related to a request #26195 - it is completed with PostUpdateReturnReceiptLine become public.
So, does the current request still have a purpose?
Describe the request
We would like var SalesHeader added to the following event.
Original:
Change:
Additional context
Post Invoice with Return Receipts
Internal work item: AB#523918
The text was updated successfully, but these errors were encountered: