Skip to content
New issue

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

[Event Request] codeunit 7313 "Create Put-away" - OnBeforeCreateWhsePutAwayForProdOrder #28436

Open
FSchneiderYav opened this issue Mar 31, 2025 · 1 comment
Labels
event-request Request for adding an event SCM GitHub request for SCM area Test1

Comments

@FSchneiderYav
Copy link

FSchneiderYav commented Mar 31, 2025

Describe the request

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;

Internal work item: AB#572966

@JesperSchulz JesperSchulz added event-request Request for adding an event SCM GitHub request for SCM area labels Apr 1, 2025
@ChethanT ChethanT added the Test1 label Apr 3, 2025
@tomasevicst
Copy link

tomasevicst commented Apr 4, 2025

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
event-request Request for adding an event SCM GitHub request for SCM area Test1
Projects
None yet
Development

No branches or pull requests

4 participants