We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add an Event OnAfterPostOutput in the procedure PostOutput in Codeunit 7324 "Whse.-Activity-Post"
local procedure PostOutput(var ProdOrder: Record "Production Order") var ProdOrderLine: Record "Prod. Order Line"; begin TempWhseActivLine.Reset(); TempWhseActivLine.Find('-'); ProdOrder.Get(TempWhseActivLine."Source Subtype", TempWhseActivLine."Source No."); repeat ProdOrderLine.Get(TempWhseActivLine."Source Subtype", TempWhseActivLine."Source No.", TempWhseActivLine."Source Line No."); PostOutputLine(ProdOrder, ProdOrderLine); until TempWhseActivLine.Next() = 0; PostedSourceType := TempWhseActivLine."Source Type"; PostedSourceSubType := TempWhseActivLine."Source Subtype"; PostedSourceNo := TempWhseActivLine."Source No."; OnAfterPostOutput(ProdOrder); // <------------------------------------------------------------ New Event end;
[IntegrationEvent(false, false)] local procedure OnAfterPostOutput(var ProdOrder: Record "Production Order") begin end;
We need to handle handling warehouse rounding adjustments. Internal work item: AB#567158
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the request
Please add an Event OnAfterPostOutput in the procedure PostOutput in Codeunit 7324 "Whse.-Activity-Post"
Additional context
We need to handle handling warehouse rounding adjustments.
Internal work item: AB#567158
The text was updated successfully, but these errors were encountered: