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

How to restrict dynamic form to submit request

ARNAB86
Regular Contributor
Regular Contributor

Hi Team,

We have created the dynamic form to update user customproperty 61 and cutomproperty62 field.

But we require to put condition if user customproperty3 is NEW the form should not get submitted.

Please let me know.

Find attached screenshot as well.

Thanks

Arnab Pal

5 REPLIES 5

rushikeshvartak
All-Star
All-Star

Add condition in gsp


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

Hi Rushikesh,

Can you please suggest what condition we need to put and where (gsp ?)

users/create.gsp


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

IAM-Vaibhav
New Contributor III
New Contributor III

Hi @ARNAB86 ,

you can find GSP document here.

TPAG | Guidance on GSP Customization - Saviynt Forums - 50446

Regards,
Vaibhav Patil
If this helps you, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

IAM-Vaibhav
New Contributor III
New Contributor III

Hi @ARNAB86 ,

Other way is you can modify the sav role and configure Advance query for updateUser Tile  , this way you can filter the users based on customproperty3 as per your requirement.

PFA. sample Query for userupdate Tile.

{ "for": "UpdateUserRequest", "query": "select a from Users a where a.customproperty3 !='NEW' "}

Above Query will show only users to update which are satisfying Query Condition.

Note : if you use this configuration then you have to configure query for each tile explicitly.

Regards,
Vaibhav Patil
If this helps you, click 'Kudos'. If it solved your query, select 'Accept As Solution'.