Why do you need this change?
Event ist required to integrate our enhanced warehouse functionality for load carrier management (create put-away per load carrier).
Describe the request
    local procedure HandleWhsePutAwayForProdOutput(ItemJournalLine: Record "Item Journal Line")
    begin
        if ItemJournalLine.OutputValuePosting() then
            exit;
        if ItemJournalLine."Entry Type" <> ItemJournalLine."Entry Type"::Output then
            exit;
        if (ItemJournalLine."Order No." = '') or (ItemJournalLine."Order Line No." = 0) then
            exit;
        MfgCreatePutaway.IncludeIntoWhsePutAwayForProdOrder(ItemJournalLine);
+ OnAfterHandleWhsePutAwayForProdOutput(ItemJournalLine);
    end;
...
+ [IntegrationEvent(false, false)]
+ local procedure OnAfterHandleWhsePutAwayForProdOutput(ItemJournalLine: Record "Item Journal Line")
+ begin
+ end;
Internal work item: AB#619014