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

Need to expiry only specific Requests

userr
New Contributor II
New Contributor II

Hi,

we have a request to expiry only specific requests like, Request created to modify user profile attributes through UI.

where the Request will go Manager and If manager has not taken any action after 14 days the request should be expired.

we can not use the Global configuration because we do not need to expire the rest of the requests like request submitted for account or access.

Thanks in advance
 

6 REPLIES 6

NM
Honored Contributor II
Honored Contributor II

@userr you can use enhanced query to expire the specific request.

userr
New Contributor II
New Contributor II

@NM Thanks for the prompt response, appreciated!

Can you please share sample query, thanks again

Raghu
All-Star
All-Star

@userr  use below EQ query based on your requirement you can modify it

https://forums.saviynt.com/t5/identity-governance/approval-request-not-clearing-after-approval/m-p/8...

https://forums.saviynt.com/t5/identity-governance/volume-of-access-requests-not-completed-due-to-no-...

 

select requestkey as ars_Requests__primarykey ,4 as ars_Requests__status
from ars_requests
where SUBSTR(JBPMPROCESSINSTANCEID, INSTR(JBPMPROCESSINSTANCEID, '.') + 1, LENGTH(JBPMPROCESSINSTANCEID))='123174' limit 1;


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.

rushikeshvartak
All-Star
All-Star
  • Use workflow to auto escalate the request and expire instead of enhanced query

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

userr
New Contributor II
New Contributor II

@Raghu Thanks.

@rushikeshvartak  Request rejection and Expiration can be consider as same? 

For request expiry we need to execute the "Expiry Old Requests" job. 
 

  • If you auto escalate then request will be considered as auto rejected and email can be sent.
  • With Enhanced query email will not be sent. and respective JBPM tables we can't update

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