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
We would like to ask you to add "OverrideDimErr" in publisher OnBeforeCheckGenJnlLine, codeunit 12 "Gen. Jnl.-Post Line"
Procedure now:
local procedure CheckGenJnlLine(GenJournalLine: Record "Gen. Journal Line"; CheckLine: Boolean)
var
IsHandled: Boolean;
begin
IsHandled := false;
OnBeforeCheckGenJnlLine(GenJournalLine, CheckLine, IsHandled);
if IsHandled then
exit;
if CheckLine then begin
if OverrideDimErr then
GenJnlCheckLine.SetOverDimErr();
OnCheckGenJnlLineOnBeforeRunCheck(GenJournalLine);
GenJnlCheckLine.RunCheck(GenJournalLine);
end;
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeCheckGenJnlLine(GenJnlLine: Record "Gen. Journal Line"; CheckLine: Boolean; var IsHandled: Boolean)
begin
end;
After modification:
[IntegrationEvent(false, false)]
>>>>>>>>>>>>
local procedure OnBeforeCheckGenJnlLine(GenJnlLine: Record "Gen. Journal Line"; CheckLine: Boolean; var OverrideDimErr: Boolean; var IsHandled: Boolean)
<<<<<<<<<<<<
begin
end;
Additional context
To be able to register without control of dimensions in the regularization entry records (Close Income Statement)
The text was updated successfully, but these errors were encountered:
Describe the request
We would like to ask you to add "OverrideDimErr" in publisher OnBeforeCheckGenJnlLine, codeunit 12 "Gen. Jnl.-Post Line"
Procedure now:
After modification:
Publisher now:
After modification:
Additional context
To be able to register without control of dimensions in the regularization entry records (Close Income Statement)
The text was updated successfully, but these errors were encountered: