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 need a new event for the function CreateWhsePutAwayForProdOrder in codeunit 7313 "Create Put-away"
Additional context
internal procedure CreateWhsePutAwayForProdOrder(var ProductionOrder: Record "Production Order")
begin
+ OnBeforeCreateWhsePutAwayForProdOrder(ProductionOrder);
if not MfgPutAwayHelper.CanCreateProdWhsePutAway(ProductionOrder) then
exit;
ProcessWhsePutAwayForProdOrder(ProductionOrder);
if GuiAllowed() then
if CurrWarehouseActivityHeader."No." <> '' then
Message(PutAwayActivityNoHasBeenCreatedMsg, CurrWarehouseActivityHeader."No.")
else
Error(NothingToCreateErr);
end;
+ [IntegrationEvent(false, false)]
+ local procedure OnBeforeCreateWhsePutAwayForProdOrder(var ProductionOrder: Record "Production Order")
+ begin
+ end;
@FSchneiderYav we are currently working on componentization for Manufactoring, and "Create Put-away" object is part of that. Procedure in which you asked for publisher will go into another codeunit, as a part on Manufactoring app. So, we would like to avoid now adding an publishers and later obsolete same one, when we move code part into another codeunit.
Can you tell us if this request is for future development, or you need now for clients who will go with BC26?
This applies also for other request that you created for the same object.
Describe the request
We need a new event for the function CreateWhsePutAwayForProdOrder in codeunit 7313 "Create Put-away"
Additional context
Internal work item: AB#572966
The text was updated successfully, but these errors were encountered: