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

In which table i can find requestid number

Vidhya
New Contributor III
New Contributor III

Hi,

We are generating analytic reports of access request details. Can anyone say where does requestid number is stored. I want to fetch the request id generated

4 REPLIES 4

NM
Esteemed Contributor
Esteemed Contributor

@Vidhya if you are referring to requestkey then ars_requests table 


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

rushikeshvartak
All-Star
All-Star
SELECT DISTINCT substr(jbpmprocessinstanceid, instr(jbpmprocessinstanceid, '.') + 1, length(jbpmprocessinstanceid)) AS 'REQUEST ID' from ars_requests

rushikeshvartak_0-1730781306416.png

 


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

How do we fetch approval action whether request is approved or rejected 

Vidhya
New Contributor III
New Contributor III

Thank you @rushikeshvartak