Announcing the SAVIYNT KNOWLEDGE EXCHANGE unifying the Saviynt forums, documentation, training, and more in a single search tool across platforms. Click HERE to read the Announcement.

Dynamic attributes in ARS

Community_User
Saviynt Employee
Saviynt Employee
Originally posted on November 30 2020 at 11:35 UTC

Is it supported to show target user's custom properties in ARS for a certain endpoint using dynamic attributes.


I tried below SQL query


select customproperty15 from users where userkey = ${requestee}


, but it didn't work since ARS page was not rendered. We have version 5.5.

This message was previously posted on Saviynt's legacy forum by a community user and has been moved over to this forum for continued exposure.
2 REPLIES 2

Community_User
Saviynt Employee
Saviynt Employee
Originally posted on November 30 2020 at 12:04 UTC

Try using the user object -> ${user.id}


select customproperty15 as id from users where userkey = ${user.id}

This message was previously posted on Saviynt's legacy forum by a community user and has been moved over to this forum for continued exposure.

Community_User
Saviynt Employee
Saviynt Employee
Originally posted on November 30 2020 at 12:16 UTC

Thanks. The problem was 'as ID' was missing from the query.

This message was previously posted on Saviynt's legacy forum by a community user and has been moved over to this forum for continued exposure.