Unable to see the certain categories as Customer Admin in Service PortalIssue <!-- 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 User with customer admin role unable to see certain categories on "sc category page" widget on service portal. Release Any supported release. Cause Below code on "sc category page" widget is checking view access for a user on category and failing due to "not available for" Public User criteria set on the certain record producers / catalog items. // Does user have permission to see this category?var categoryId = '' + data.category_id;var categoryJS = new sn_sc.CatCategory(categoryId);if (!categoryJS.canView()) {data.error = gs.getMessage("You do not have permission to see this category");return;} Ideally, public role is used to determine whether login required to access the features and functions within service now, and this should not be used in user criteria.Hence, using the public role in "not available for" public user criteria causing the reported issue.In general, when checking the view access on category, the system will look for view access in the catalog items which are available within the category, at least one of them should be available for the category to be visible to the user.In the reported scenario, the affected category had only one catalog item / record producer listed under it, however, that catalog item / record producer had a non available for user criteria which is set to public.The non available for user criteria overrides the available for user criteria. Hence, though you have set the available for user criteria on category, access is denied for the user on the category. Resolution Review the public User criteria set on the affected catalog item and apply the required other user criteria instead of public user criteria or update it as per your business requirement. Additional Information Service catalog categories User criteria for Service Portal