bcquality/microsoft/knowledge/privacy/keep-customer-data-out-of-featuretelemetry-dimensions.good.al
Jesper Schulz-Wedde 5bcdc55df9 Sync knowledge articles with review agent instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-05 14:08:32 +02:00

13 lines
441 B
AL

codeunit 50935 "Privacy FeatureTelemetry Good"
{
procedure LogExpenseReleased()
var
FeatureTelemetry: Codeunit "Feature Telemetry";
CustomDimensions: Dictionary of [Text, Text];
begin
CustomDimensions.Add('DocumentType', 'Expense');
CustomDimensions.Add('LineCountBucket', '10-20');
FeatureTelemetry.LogUsage('0000EA1', 'Expense Agent', 'Document Released', CustomDimensions);
end;
}