Business Services Status widget in Service Portal is not showing all servicesDescription<!-- 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 services_status page in Service Portal, all the Business Services are not showing Release or EnvironmentAny supported releaseCauseBelow are the possible cases : Number of records in cmdb_ci_service table is more than 250Class is not cmdb_ci_service ResolutionNumber of records in cmdb_ci_service table is more than 250 :As per the code in Server Script of Business Services Status widget, there is a check if there is a limit of the number of the records to show in Widget Instance options. If not this is defaulted to 250. If there are more than 250 records in cmdb_ci_service table, all 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 doing the Glide Record query on cmdb_ci_service table, there is a query restriction that 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.