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
procedure "Code"(var BankAccReconciliationLine: Record "Bank Acc. Reconciliation Line"; Overwrite: Boolean)
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:BEGIN
var
IsHandled: Boolean;
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:END
begin
if BankAccReconciliationLine.IsEmpty() then
exit;
MapLedgerEntriesToStatementLines(BankAccReconciliationLine, Overwrite, ApplyEntries);
if ApplyEntries then begin
ApplyLedgerEntriesToStatementLines(BankAccReconciliationLine, Overwrite);
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:BEGIN
IsHandled := false;
OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere(BankAccReconciliationLine, IsHandled);
if not IsHandled then
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:END
NotifyIfEntriesMatchedElsewhere(BankAccReconciliationLine);
end;
end;
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:BEGIN
[IntegrationEvent(true, false)]
local procedure OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere(var BankAccReconciliationLine: Record "Bank Acc. Reconciliation Line"; var IsHandled: Boolean)
begin
end;
//----------------------------------------OnCodeOnBeforeNotifyIfEntriesMatchedElsewhere:END
Additional context
we need option how to skip NotifyIfEntriesMatchedElsewhere function.
Internal work item: AB#562600
The text was updated successfully, but these errors were encountered:
Describe the request
Please add new event
Additional context
we need option how to skip NotifyIfEntriesMatchedElsewhere function.
Internal work item: AB#562600
The text was updated successfully, but these errors were encountered: