- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago - last edited 3 weeks ago
Hi Team,
When I click on Add button for mitigating controls to add, I can see the list of controls applied on the entity on which we assess the risk.
I wanted to understand where the control list filter condition is configured in ServiceNow.
It would be appreciated if someone can share the exact filter and where it is configured.
Thanks,
Majji
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @Majji Koteswar1 ,
On click of the "Add" button a client script is triggered - "Add Controls".
sys_ux_client_script_1a922c9543113110ec6250d556b8f263
This is the client script that opens the MRA route, and in the client script, the filter query is defined through the extension point implementation "AssessmentInstanceAddControlsFilter", which actually builds the query.
The script include AssessmentInstanceAddControlsFilter (sys_script_include_4642b38553322010bad1ddeeff7b1207), defines this implementation specifically the getFilterQuery() method.
It shows controls that have the same entity as the one being assessed, that are not in retired state and are not already added as controls to the risk assessment.
Thank you,
Meghana
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @Majji Koteswar1 ,
On click of the "Add" button a client script is triggered - "Add Controls".
sys_ux_client_script_1a922c9543113110ec6250d556b8f263
This is the client script that opens the MRA route, and in the client script, the filter query is defined through the extension point implementation "AssessmentInstanceAddControlsFilter", which actually builds the query.
The script include AssessmentInstanceAddControlsFilter (sys_script_include_4642b38553322010bad1ddeeff7b1207), defines this implementation specifically the getFilterQuery() method.
It shows controls that have the same entity as the one being assessed, that are not in retired state and are not already added as controls to the risk assessment.
Thank you,
Meghana