From 2902afe19e207075f88b30f9cc9dbca041f22f7e Mon Sep 17 00:00:00 2001 From: Onat Buyukakkus <55088871+onbuyuka@users.noreply.github.com> Date: Tue, 7 Apr 2026 13:54:43 +0200 Subject: [PATCH] Fix MCP feedback feature area OCV ID from 'Configuration' to 'MCPServer' The generic 'Configuration' value was not useful for identifying MCP feedback in OCV. Changed to 'MCPServer' for proper feature identification. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../Codeunits/MCPConfigImplementation.Codeunit.al | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System Application/App/MCP/src/Configuration/Codeunits/MCPConfigImplementation.Codeunit.al b/src/System Application/App/MCP/src/Configuration/Codeunits/MCPConfigImplementation.Codeunit.al index d520b22569..e6994d8252 100644 --- a/src/System Application/App/MCP/src/Configuration/Codeunits/MCPConfigImplementation.Codeunit.al +++ b/src/System Application/App/MCP/src/Configuration/Codeunits/MCPConfigImplementation.Codeunit.al @@ -1114,7 +1114,7 @@ codeunit 8351 "MCP Config Implementation" exit; Feedback.WithCustomQuestion(MCPServerFeedbackQst, MCPServerFeedbackQst).WithCustomQuestionType(Enum::FeedbackQuestionType::Text); - Feedback.RequestDislikeFeedback('MCP Server', 'Configuration', 'Model Context Protocol (MCP) Server'); + Feedback.RequestDislikeFeedback('MCP Server', 'MCPServer', 'Model Context Protocol (MCP) Server'); Session.LogMessage('0000RTR', NoActiveConfigsFeedbackTxt, Verbosity::Normal, DataClassification::SystemMetadata, TelemetryScope::All, 'Category', GetTelemetryCategory()); end; @@ -1123,7 +1123,7 @@ codeunit 8351 "MCP Config Implementation" var Feedback: Codeunit "Microsoft User Feedback"; begin - Feedback.RequestFeedback('MCP Server', 'Configuration', 'Model Context Protocol (MCP) Server'); + Feedback.RequestFeedback('MCP Server', 'MCPServer', 'Model Context Protocol (MCP) Server'); Session.LogMessage('0000RTS', GeneralFeedbackTxt, Verbosity::Normal, DataClassification::SystemMetadata, TelemetryScope::All, 'Category', GetTelemetryCategory()); end;