Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

AD Group Creation Risk

RoniYla
New Contributor
New Contributor

Hi,

we have customized the roles/adGroup/create.gsp & roles/azureADGroup/create.gsp pages for EntraID and AD group creation.

We would like to use the risk field in Roles when creating the group however by default only the
Sox Critical, Sys Critical, Privileged and Confidentiality are available in the Risk and Compliance section.

I tried configuring the .gsp file as below but this doesn't change the risk field when checking it from Roles after creation:


<div class="m-portlet__head riskAndCompliance">
<h3 class="m-portlet__head-text">Risk and Compliance</h3>
</div>

<div class="row riskAndCompliance">
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-sm-4">
<g:message code="Risk" editable="true"/>
</label>
<div class="col-sm-8 riskAndCompliance">
<select name="Risk" class="select2_category form-control">

<option value="2" ${rolesInstance.risk == 2 ? 'selected' : ''}>Low</option>
<option value="3" ${rolesInstance.risk == 3 ? 'selected' : ''}>Medium</option>
<option value="4" ${rolesInstance.risk == 4 ? 'selected' : ''}>High</option>
<option value="5" ${rolesInstance.risk == 5 ? 'selected' : ''}>Critical</option>
</select>
</div>
</div>
</div>
</div>

Any reason why this might not be working?

Best regards,
Roni

 

3 REPLIES 3

rushikeshvartak
All-Star
All-Star
  • Did you restarted the application?
  • Does it visible on UI ?
  • Please provide screenshot

Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

RoniYla
New Contributor
New Contributor

Hi,

yes I have modified the page quite a bit, the customer doesn't want to have those other Risk and Compliance fields there, only risk.

RoniYla_0-1727184165502.png

 

Comment the code or remove the lines

<!-- <option value="3" ${rolesInstance.risk == 3 ? 'selected' : ''}>Medium</option> -->
<!-- <option value="4" ${rolesInstance.risk == 4 ? 'selected' : ''}>High</option> -->
<!-- <option value="5" ${rolesInstance.risk == 5 ? 'selected' : ''}>Critical</option> -->


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.