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
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
The text was updated successfully, but these errors were encountered:
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 >>>>>
<<<<< Modified >>>>>
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
The text was updated successfully, but these errors were encountered: