Select Resource Operation are not visible for DHC Snapshot Virtual machine in Global Int & Global Dev InstanceIssue When impersonate to CMP EndUser(Non Admin) then "Select Resource Operation" is not visible. Test users does not have the "Select Resource Operations" available for Snapshot Virtual machines, where customer confirmed it was working for "DHC Virtual machines provision". If any test user can able to provision any stack or any other functionalities from Cloud user Portal then he should be able to perform this action as well and it is not necessary he should have the role sn_cmp.cloud_admin for this user due to other security reasons. Impersonate with Test user:- Impersonate with admin user:- CauseThe select box is rendered via : /sp_config?id=widget_editor&sys_id=593229900b4c3200eff7ef9bb4673a93Specifically it calls CMPUtil.getAvailableResourceOperations : inside this method there are two checks:1. A CI is attached to the resource block, Please also make sure the same CI is not associated to other Resource Blocks.2. resourceBlockServiceScript.getPublicOperationsForResource : This uses the following logic to determine who can see operations ->public static boolean allowOperationsOn(String resourceId) {GlideRecord resourceGr = new GlideRecord("cmdb_ci");if (resourceGr.get(resourceId)) {User user = GlideSession.get().getUser();return (user.hasRole("sn_cmp.cmp_root_admin")|| user.getID().equals(resourceGr.getValue("assigned_to"))|| user.isMemberOf(resourceGr.getValue("assignment_group")));}return false;}ResolutionIt has been identified, that the response processor was not updating assigned to & support group l1 value in the response server snapshot table.So customer made changes in response processor hence issue is resolved.