Active Directory Domain Controller tab is emptyIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms After proper discovery of active directory domain controller, the domains are not getting listed under "Active Directory Domain Controller" tab of the CI. Release All Versions. Cause There is no relationship definition between CI and AD Domains out of the box. Resolution You have to configure relationship definition as detailed below: Navigate to System Definitions --> Relationships and configure new relationship as below: You can copy the code from below section: var gr = new GlideRecord('cmdb_rel_ci'); gr.addQuery('child',parent.sys_id); gr.addQuery('type.name','Runs on::Runs'); gr.query(); var ad_ids = []; while (gr.next()) ad_ids.push('' + gr.parent); current.addQuery('sys_id',ad_ids); There is no need of rediscovery after configuring this. The related list on CI will be automatically populated with AD Domains. *Note* If you don't see the tab on the Windows Server form after creating the new System Definition > Relationship then you may need to configure the related list on the form with below steps. 1. On the Windows Server record click the Additional Actions button at the top left of the form header.2. From the drop down menu select Configure > Related Lists.3. On the Configuring related lists on Windows Server form find Active Directory Domain Controller in the Available list on the left side and move it over to the right side Selected list and click Save. Additional Information KB0714349 - How to trigger Active Directory domain controller pattern