Service Mapping stops displaying connecting nodes at some point after discovery is completeDescription<!-- 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:; } --> Service Mapping stops displaying connecting nodes at some point after discovery is complete Issue If you run a deep, top-down/vertical Service Mapping discovery, you may run into an issue in Service Mapping where the discovered bottom nodes do not display outgoing connections to the next node(s) even though the discovery logs tell you that these outgoing connections have been successfully created and no errors were found. Solution The problem in this scenario is that Service Mapping discovery of the Business Service may have reached the depth of the service model recomputation. You can increase the service model recomputation depth. Add the property named glide.service_mapping.computation_depth to the sys_properties table with a value of 30 (the default is 25). Then run the following script where 939137dd4ff4830056dc70021310c779 is the sys_id of the business service as an example: var gr = new GlideRecord('cmdb_ci_service_discovered');gr.get('939137dd4ff4830056dc70021310c779'); // the business service sys_idvar layerId = gr.layer;var layerGr = new GlideRecord('svc_layer');layerGr.get(layerId);var env = sn_svcmod.ServiceContainerFactory.loadEnvironment(layerGr.environment);var allLayers = env.layers();for (var i = 0 ; i < allLayers.length ; i++) {var layer = allLayers[i];layer.markRecomputationNeeded();}SNC.ServiceMappingFactory.recomputeLayer(layerGr); This script syncs the service model for the business service without deleting the history.If you need to, you can increase glide.service_mapping.computation_depth and run the script again.