Customizing CSM rolesIssue For the latest information, see Creating custom CSM user roles. Overview You might sometimes need to create new CSM roles or modify the out-of-box CSM roles to satisfy custom business requirements. For example, a user might need a role to view all of the cases in the user's own account/sub-accounts but that user should not have the administrative capabilities of a customer administrator role. This article describes how to configure this capability.ResolutionThe solution for this issue requires five main steps: Create a role.Create a copy of CSQueryBRUtil.Create a new query business rule.Create new ACLs.Validation. This section walks you through an example providing the detailed steps to accomplish this procedure. Create a new role with a specific name. The example in this procedure uses the customized_customer role. Make sure the new role includes the sn_esm_user role as a sub-role because the CSM security model is built on the base roles such as sn_esm_user and sn_esm_agent. Create a copy of CSQueryBRUtil. Go to the script include list. Create a copy file for CSQueryBRUtil in global scope, such as CSQueryBRUtilCopy. Add the logic in this new file. You need to implement the logic in the copy file because CSQueryBRUtil has been set to read-only to protect the out-of-box features. A role definition is needed, as mentioned previously. Update the following two methods in the CSQueryBRUtilCopy to let the new user role see the cases in the user's account. addCaseQueryBR canESMUserReadCase If other entities such as asset, product, or account need to be customized, follow the same pattern to modify the logic in "addAssetQueryBR", "canESMUSerReadAsset", etc. The two methods come in pairs to process the access control for the eight entities in the CSM application. Configure the before query business rule for the sn_customerservice_case table. Go to the Business Rules list and filter for Active=true. Search for "Case query for customer" and make a copy of it. Create a new QBR, as shown in the example. After adding the new QBR, deactivate the original "Case query for customer" rule. It is difficult to maintain two similar QBRs because users may have roles triggering multiple QBRs that do the same thing. Create proper ACLs for this new role. In this example, add one more ACL for sn_customerservice_case and for csm_order_case, respectively, to honor this new script include and the methods in it. For example: Perform validation. Add this customized role to a user, such as Jane Contact in Boxeo in the out-of-box demo data, to test the customization. Impersonate this user. From Service Portal, verify that the user can see the cases belong to Boxeo and its sub-accounts. Note – The customization in this example is just for this specific use case where a customized role is needed to view all of the cases in a user's account and sub-accounts. If other roles with specific requirements need to be implemented, the approach is the same but would require different minor changes.