wassimbir
(wassim biroukane)
April 30, 2026, 12:56am
1
Hello Team,
I am trying to build a form with two dependent dropdown fields:
The first dropdown lists Access Profiles
Based on the selected Access Profile, the second dropdown should display the identities assigned to that Access Profile
However, I have not been able to achieve this using the documentation.
It seems that the second field cannot dynamically update based on the selection of the first one.
Has anyone successfully implemented this kind of dependency in a form?
Is this possible?
Do I need to use a Rule or a different approach?
Any working example would be greatly appreciated
Thanks in advance for your help!
ROHPU
(Pucha Rohan)
April 30, 2026, 3:56am
2
ISC does not support dependent dropdowns in a single form. Form fields are evaluated only once at load time, so the second field cannot dynamically change based on the first selection.
Hey @wassimbir
I checked SailPoint’s and a few other documents for ISC forms :
BLS360 secures healthcare, finance, banking, federal, manufacturing, insurance, and education with IAM and IGA solutions. Get a security assessment.
Forms are static
Dropdowns and other fields are defined at design time.
No native support for dependent dropdowns
You cannot configure one field to dynamically filter another based on its selection.
Rules cannot inject dynamic options into forms
BeanShell or workflow rules can manipulate provisioning plans or identity attributes, but they cannot refresh a form field in real time.
Supported dynamic behavior is limited to:
Pre-populating fields with identity attributes.
Using workflows to collect data in multiple steps (e.g., first form → workflow query → second form).
Using APIs externally to build a custom UI that interacts with ISC.
wassimbir
(wassim biroukane)
April 30, 2026, 8:23am
4
Hello,
While looking some other similar topics, I found that someone has succeded to implement it, i will try to do implement it and post the solution if i did succeed.
Hi Dominick,
Yes I figured it out, although there’s no documentation on it.
When setting up my second drop down field, I included a Search on Identities where search query is just *. I used the attribute to display as displayName then included a filter attribute. I put roleName there and then went to the API and configured the rest. Here is the JSON of my form for the second dropdown. I cannot find any documentation on the .exact field in aggregationBucketField, but this seems to clear out the…
Sure looking forward to the solution
Hi @wassimbir , We can use dynamic values in the forms using inline variables.
Here is the documentation regarding how to use the inline variables in forms.
Thank you