diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_1.png b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_1.png
new file mode 100644
index 0000000000..1d25997eaf
Binary files /dev/null and b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_1.png differ
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_2.png b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_2.png
new file mode 100644
index 0000000000..b60337b8e7
Binary files /dev/null and b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_2.png differ
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_3.png b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_3.png
new file mode 100644
index 0000000000..28befe4b42
Binary files /dev/null and b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_3.png differ
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_4.png b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_4.png
new file mode 100644
index 0000000000..e48f9d99fb
Binary files /dev/null and b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/CI_Incident_Message_Count_4.png differ
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/README.md b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/README.md
new file mode 100644
index 0000000000..627ac7255e
--- /dev/null
+++ b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/README.md
@@ -0,0 +1,34 @@
+# Incident Count of Selected Configuration Item with Info Message and Link to its Related Incident
+
+Displays a message showing the count of open incidents associated with a selected **Configuration Item (CI)** whenever the **Configuration Item** field changes on the Incident form.
+
+- Helps quickly identify whether the selected CI has existing incident by fetching and displaying active incident counts (excluding *Resolved*, *Closed*, and *Canceled* states).
+- Shows an **info message** with a **clickable link** that opens a filtered list of related incidents for that CI
+- If more than five incidents are linked, a **warning message** appears suggesting Problem investigation for frequent or repeated CI issues.
+- Uses an **onChange Client Script** on the *Configuration Item* field and a **GlideAjax Script Include** called from the client script to fetch the incident count
+
+---
+
+## Warning Message displayed on form when CI has 5 or more incidents
+
+
+
+---
+
+## Info Message displayed on form when CI has no incidents
+
+
+
+---
+
+## Info Message displayed on form when CI has incidents less than 5
+
+
+
+---
+
+## Upon clicking the url link filter list opens with incidents associated with CI
+
+
+
+---
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/clientScriptCiIncident.js b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/clientScriptCiIncident.js
new file mode 100644
index 0000000000..2338f69250
--- /dev/null
+++ b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/clientScriptCiIncident.js
@@ -0,0 +1,36 @@
+function onChange(control, oldValue, newValue, isLoading, isTemplate) {
+ if (isLoading || newValue === '') return;
+
+ g_form.clearMessages();
+
+ // Call Script Include to count incidents by CI
+ var ga = new GlideAjax('ConfigurationIncidentCheck');
+ ga.addParam('sysparm_name', 'getIncidentCount');
+ ga.addParam('sysparm_ci', newValue);
+
+ ga.getXMLAnswer(function(response) {
+ var count = parseInt(response, 10);
+ if (isNaN(count)) {
+ g_form.addErrorMessage("Could not retrieve incident count for this CI.");
+ return;
+ }
+
+ var ciName = g_form.getDisplayValue('cmdb_ci');
+ var url = '/incident_list.do?sysparm_query=cmdb_ci=' + newValue + '^stateNOT IN6,7,8';
+ var msg = 'Configuration Item ' + ciName + ' has ' + count + ' related incident(s).';
+
+ if (count === 0) {
+ g_form.addInfoMessage(
+ 'Configuration Item ' + ciName + ' has no incidents associated with it.'
+ );
+} else {
+ if (count >= 5) {
+ g_form.addWarningMessage(
+ msg + ' consider Problem investigation.'
+ );
+ } else {
+ g_form.addInfoMessage(msg);
+ }
+}
+ });
+}
diff --git a/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/glideAjaxIncidentCiCount.js b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/glideAjaxIncidentCiCount.js
new file mode 100644
index 0000000000..6eed4248e8
--- /dev/null
+++ b/Client-Side Components/Client Scripts/Incident Count of Selected CI with Clickable Link to Related Incidents/glideAjaxIncidentCiCount.js
@@ -0,0 +1,17 @@
+var ConfigurationIncidentCheck = Class.create();
+ConfigurationIncidentCheck.prototype = Object.extendsObject(AbstractAjaxProcessor, {
+getIncidentCount: function() {
+ var ci = this.getParameter('sysparm_ci');
+ if (!ci) return 0;
+
+ var gr = new GlideAggregate('incident');
+ gr.addQuery('cmdb_ci', ci);
+ gr.addQuery('state', 'NOT IN', '6,7,8');
+ gr.addAggregate('COUNT');
+ gr.query();
+
+ return gr.next() ? gr.getAggregate('COUNT') : 0;
+ },
+
+ type: 'ConfigurationIncidentCheck'
+});