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 publisher change] in event "Inventory Profile Offsetting" (Codeunit 99000854) #28446

Open
bhorvath9815 opened this issue Apr 1, 2025 · 0 comments
Labels
event-request Request for adding an event SCM GitHub request for SCM area

Comments

@bhorvath9815
Copy link

bhorvath9815 commented Apr 1, 2025

Describe the request

Dear Support,

Could you please modify the publisher in "Inventory Profile Offsetting" (Codeunit 99000854) and a bit the following code? The publisher name is: "OnBeforeTransItemLedgEntryToProfile".

<<<<< Original Code >>>>>

    [IntegrationEvent(false, false)]
    local procedure OnBeforeTransItemLedgEntryToProfile(var InventoryProfile: Record "Inventory Profile"; var Item: Record Item; var ItemLedgerEntry: Record "Item Ledger Entry"; var IsHandled: Boolean)
    begin
    end;
local procedure TransItemLedgEntryToProfile(var InventoryProfile: Record "Inventory Profile"; var Item: Record Item)
var
    IsHandled: Boolean;
begin
    IsHandled := false;
    OnBeforeTransItemLedgEntryToProfile(InventoryProfile, Item, ItemLedgEntry, IsHandled);
    if IsHandled then
        exit;

<<<<< Modified >>>>>

    [IntegrationEvent(false, false)]
    local procedure OnBeforeTransItemLedgEntryToProfile(var InventoryProfile: Record "Inventory Profile"; var Item: Record Item; var ItemLedgerEntry: Record "Item Ledger Entry"; var IsHandled: Boolean; var LineNo: Integer)
    begin
    end;
local procedure TransItemLedgEntryToProfile(var InventoryProfile: Record "Inventory Profile"; var Item: Record Item)
var
    IsHandled: Boolean;
begin
    IsHandled := false;
    OnBeforeTransItemLedgEntryToProfile(InventoryProfile, Item, ItemLedgEntry, IsHandled, LineNo);
    if IsHandled then
        exit;

Additional context

We need to skip the Release part of the code for several times due to a customer condition.

Thank you in advance.
Internal work item: AB#572970

@JesperSchulz JesperSchulz added event-request Request for adding an event SCM GitHub request for SCM area labels Apr 1, 2025
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
Projects
None yet
Development

No branches or pull requests

2 participants