The Search option available under Cloud User Portal is not useful to search specific stack information.Issue <!-- 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 The Search option available under Cloud User Portal is not useful to search specific stack information. The customer might have multiple stacks available under Manage Stacks section in Cloud User Portal, current search option available is Global, given a stack name to search, the search looks at global available with a specific name but not really serving the need to search only for Stacks or Resources. Release Jakarta P*, Kingston P* and London Environment Cloud User Portal (CMP) Cause The code currently not supporting the Search option in Cloud User Portal to filter specific information. Resolution While Development is working to update the Search option feasibility for the customer, we can use below workaround which could make the Search option with more relevant information, below is the procedure to modify the search option for stacks. Log into the instanceNavigate to Service Portal > Search SourcesFilter on the Name field for "Stacks"Replace the Data fetch script section as below. (function(query) {var results = [];if (!gs.isLoggedIn())return results;var userRoles = gs.getUser().getUserRoles();var is_admin = false;var is_group_admin = false;if(!gs.nil(userRoles)) {if(userRoles.indexOf('admin')>-1 || userRoles.indexOf('sn_cmp.cmp_root_admin')>-1)is_admin = true;if(userRoles.indexOf('sn_cmp.cloud_group_admin')>-1)is_group_admin = true;}var view = gs.getUser().getPreference('cloud_user_portal_view') || 'mine';var group_ids = [];if(is_group_admin || is_admin) {var grm_rec = new GlideRecord('sys_user_grmember');grm_rec.addQuery('user',gs.getUserID());grm_rec.query();while(grm_rec.next())group_ids.push(grm_rec.group.sys_id);}var sc = new GlideRecord('sn_cmp_stack');if(view == 'mine')sc.addEncodedQuery('assigned_to='+gs.getUserID());else if(view == 'group' && (is_admin || is_group_admin))sc.addEncodedQuery('assigned_to='+ gs.getUserID()+'^ORowner_groupIN'+ group_ids.join(','));sc.addQuery("name","STARTSWITH",query);sc.query();while (sc.next()) {if (!$sp.canReadRecord(sc))continue;var item = {};item.name = sc.getDisplayValue("name");item.sys_id = sc.getUniqueValue();item.url = "?id=cloud_stack_details&category=cloud_stacks&sys_id=" + sc.getUniqueValue() + "&selected_card="+ sc.getUniqueValue() +"&spa=1&active_tab=changeRequests";item.primary = item.name;results.push(item);}return results;})(query); Once above code has been replaced, we could observe the Search in Manage stacks page provide filtered information. Additional Information This is a temporary workaround which could be replaced in future releases.