Business Services Status widget in Service Portal is not showing all servicesIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> When viewing the services_status page in Service Portal, not all the Business Services are showing. ReleaseAny supported releaseCauseThere are two possible causes: Number of records in cmdb_ci_service table is more than 250Class is not cmdb_ci_service ResolutionResolve either of these causes as follows. Number of records in cmdb_ci_service table is more than 250 The code in the server script of the Business Services Status widget checks if there is a limit to the number of the records to show in Widget Instance options. If not, this defaults to 250. If there are more than 250 records in the cmdb_ci_service table, these additional records are not shown. Edit the widget instance option to show the required number of records. Class is not cmdb_ci_service When running the Glide Record query on the cmdb_ci_service table, a query restriction checks if the records are of class cmdb_ci_service (line 19 of Business Services Status widget) svs.addQuery("sys_class_name", "cmdb_ci_service"); Because of this, if there are any records in cmdb_ci_service table that are not of class Business Service, those records are not shown. If the requirement is to show all records, clone the Business services widget, and comment out the above line of code and use this cloned widget.