When viewing a DIM event in the Information Centric Analytics (ICA) portal, a user clicks on the View In DLP button which returns a 404 error, indicating a bad URL.
Is there a way to edit the incident URL used by ICA for the data source connection?
Release : 6.6
Beginning with version 6.6, the incident URL is automatically set in the DetailXml column of the LinkedServers table for the data source connection's linked server entry. If this URL is incorrect for any reason, it can be corrected manually by following this procedure:
SELECT LinkedServerID, LinkedServerName FROM RiskFabric.dbo.LinkedServers;
LinkedServerID of the linked server in questionSELECT LinkedServerName, CAST(DetailXml AS xml) AS "DetailXml" FROM RiskFabric.dbo.LinkedServers WHERE LinkedServerID = <LinkedServerID from step 2>;
DetailXml content opensIncidentUrl string<DetailXml> with the entire DetailXml content from steps 4 and 5:
UPDATE RiskFabric.dbo.LinkedServers
SET DetailXml = N'<DetailXml>'
WHERE LinkedServerID = <LinkedServerID from step 2>;