-
Notifications
You must be signed in to change notification settings - Fork 688
Open
Open
Copy link
Labels
missing-infoThe issue misses information that prevents it from completion.The issue misses information that prevents it from completion.
Description
Why do you need this change?
In our module we will create additional entries together with value entries, capacity entries and so on. I need the "Entry No." of the Item Register so that I can link all the entries together. It will suffice if the ItemReg is added as a new parameter and not var.
Describe the request
Please add the new parameter to the function PostItem in the codeunit 22 "Item Jnl.-Post Line"
procedure PostItem()
var
IsHandled: Boolean;
begin
IsHandled := false;
OnBeforePostItem(ItemJnlLine, ItemReg, IsHandled, CalledFromAdjustment);
if IsHandled then
exit; [IntegrationEvent(false, false)]
local procedure OnBeforePostItem(var ItemJournalLine: Record "Item Journal Line"; ItemReg: Record "Item Register"; var IsHandled: Boolean; CalledFromAdjustment: Boolean)
begin
end;Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
missing-infoThe issue misses information that prevents it from completion.The issue misses information that prevents it from completion.