Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Can we identify the task which got triggered for a particular user update rule

Debankita
New Contributor III
New Contributor III

Hi Team,

Can anyone please help me with the valid SQL query which will help me to fetch the tasks which got triggered due to a particular user update rule?

2 REPLIES 2

nimitdave
Saviynt Employee
Saviynt Employee

check arstasks table source,assignedfromrule column for the rule key through which this task go created.source column should have value as zero day.

SB
Saviynt Employee
Saviynt Employee

Below is the query you can try

select TASKKEY,userkey from arstasks where ASSIGNEDFROMRULE in (select objectvalue from hanaruleattribute where (objectvalue !='') and HANARULE in (select hanarulekey from hanarule where type='2' and name = 'User_update_rule_Name'))


Regards,
Sahil