mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 95c06ad8-377d-4faa-8d07-06300b1c81ec
28 lines
788 B
AL
28 lines
788 B
AL
codeunit 50309 "LogError Privacy Good"
|
|
{
|
|
procedure SendInvoice()
|
|
var
|
|
FeatureTelemetry: Codeunit "Feature Telemetry";
|
|
CustomDimensions: Dictionary of [Text, Text];
|
|
ErrorCallStack: Text;
|
|
ErrorText: Text;
|
|
begin
|
|
if TrySendInvoice() then
|
|
exit;
|
|
|
|
ErrorText := GetLastErrorText(true);
|
|
ErrorCallStack := GetLastErrorCallStack();
|
|
CustomDimensions.Add('Operation', 'SendInvoice');
|
|
FeatureTelemetry.LogError('0000FT1', 'Invoice exchange', 'Sending invoice',
|
|
ErrorText, ErrorCallStack, CustomDimensions);
|
|
end;
|
|
|
|
[TryFunction]
|
|
local procedure TrySendInvoice()
|
|
begin
|
|
Error(SendFailedErr);
|
|
end;
|
|
|
|
var
|
|
SendFailedErr: Label 'The invoice could not be sent.';
|
|
}
|