From 6e860fbd7ac5aea4f1755f7df90ced7eaf800ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Hartvig=20Gr=C3=B8nbech?= Date: Thu, 23 Jan 2025 14:25:34 +0100 Subject: [PATCH] tags --- .../AI/src/DocumentIntelligence/AzureDIImpl.Codeunit.al | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/System Application/App/AI/src/DocumentIntelligence/AzureDIImpl.Codeunit.al b/src/System Application/App/AI/src/DocumentIntelligence/AzureDIImpl.Codeunit.al index dc3e376d51..488ece111a 100644 --- a/src/System Application/App/AI/src/DocumentIntelligence/AzureDIImpl.Codeunit.al +++ b/src/System Application/App/AI/src/DocumentIntelligence/AzureDIImpl.Codeunit.al @@ -30,11 +30,11 @@ codeunit 7779 "Azure DI Impl." AddTelemetryCustomDimensions(CustomDimensions, CallerModuleInfo); if not SendRequest(Base64Data, Enum::"ADI Model Type"::Invoice, CallerModuleInfo, Result) then begin - FeatureTelemetry.LogError('', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceFailureLbl, GetLastErrorText(), '', Enum::"AL Telemetry Scope"::All, CustomDimensions); + FeatureTelemetry.LogError('0000OLK', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceFailureLbl, GetLastErrorText(), '', Enum::"AL Telemetry Scope"::All, CustomDimensions); exit; end; - FeatureTelemetry.LogUsage('', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceCompletedLbl, Enum::"AL Telemetry Scope"::All, CustomDimensions); + FeatureTelemetry.LogUsage('0000OLM', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceCompletedLbl, Enum::"AL Telemetry Scope"::All, CustomDimensions); end; @@ -52,11 +52,11 @@ codeunit 7779 "Azure DI Impl." AddTelemetryCustomDimensions(CustomDimensions, CallerModuleInfo); if not SendRequest(Base64Data, Enum::"ADI Model Type"::Recepit, CallerModuleInfo, Result) then begin - FeatureTelemetry.LogError('', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceFailureLbl, GetLastErrorText(), '', Enum::"AL Telemetry Scope"::All, CustomDimensions); + FeatureTelemetry.LogError('0000OLL', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceFailureLbl, GetLastErrorText(), '', Enum::"AL Telemetry Scope"::All, CustomDimensions); exit; end; - FeatureTelemetry.LogUsage('', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceCompletedLbl, Enum::"AL Telemetry Scope"::All, CustomDimensions); + FeatureTelemetry.LogUsage('0000OLN', AzureDocumentIntelligenceCapabilityTok, TelemetryAnalyzeInvoiceCompletedLbl, Enum::"AL Telemetry Scope"::All, CustomDimensions); end; [TryFunction]