Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/28/2024 10:00 PM
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
08/28/2024 10:30 PM
Add condition in gsp
08/28/2024 10:34 PM
Hi Rushikesh,
Can you please suggest what condition we need to put and where (gsp ?)
08/28/2024 10:44 PM - edited 08/28/2024 10:45 PM
users/create.gsp
08/28/2024 10:43 PM - edited 08/28/2024 10:43 PM
Hi @ARNAB86 ,
you can find GSP document here.
TPAG | Guidance on GSP Customization - Saviynt Forums - 50446
08/28/2024 11:02 PM
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.