While removing admin role, users are getting message as "The role cannot be deleted as it would leave fewer than the configured 2 active application administrators"Issue When a customer is trying to remove admin role from a user's profile, they are getting the below message. "The role cannot be deleted as it would leave fewer than the configured 2 active application administrators"CauseUsually, the admin role contains another scoped role as sn_templated_snip.template_snippet_admin.Now, when the customer will remove the admin role from the user, this child role will also get removed from the user, which is expected.However, for this role, there is a system property present (sn_templated_snip.min_admin_count), which checks, if the customer removes this role from a user, how many users will be left on the instance with the role of sn_templated_snip.template_snippet_admin? sys_properties.do?sys_id=98144020b74533007d70702e7e11a9b4By default, the value of the property on the OOB is 2. If by removing this role, the number of users on sys_user_has_role table for this role becomes less than 2, then the system does not allow it. That is why the error message is thrown.ResolutionThe customer first needs to have the role sn_templated_snip.template_snippet_admin assigned to a 3rd user, so that, when they remove the role from the relevant user, it does not go below the limit imposed by the property.Or they can consider changing the property to 1, but it won't be recommended, as this is an OOB property and changing it may temporarily resolve the issue, but we cannot predict any unforeseen issues.