Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,11 @@ codeunit 8900 "Email Impl"
var
AllObj: Record AllObj;
SourceRecordRef: RecordRef;
Handled: Boolean;
begin
OnBeforeFilterRemovedSourceRecords(EmailRelatedRecord, Handled);
if Handled then
exit;
repeat
if AllObj.Get(AllObj."Object Type"::Table, EmailRelatedRecord."Table Id") then begin
SourceRecordRef.Open(EmailRelatedRecord."Table Id");
Expand Down Expand Up @@ -1112,5 +1116,10 @@ codeunit 8900 "Email Impl"

GlobalLanguage(CurrentLanguage);
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeFilterRemovedSourceRecords(var EmailRelatedRecord: Record "Email Related Record"; var Handled: Boolean)
begin
end;
#endregion
}
Loading