Click HERE to see how Saviynt Intelligence is transforming the industry. |
11/04/2024 07:32 PM
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
11/04/2024 08:08 PM
@Vidhya if you are referring to requestkey then ars_requests table
11/04/2024 08:35 PM
SELECT DISTINCT substr(jbpmprocessinstanceid, instr(jbpmprocessinstanceid, '.') + 1, length(jbpmprocessinstanceid)) AS 'REQUEST ID' from ars_requests
11/04/2024 10:49 PM
How do we fetch approval action whether request is approved or rejected
11/04/2024 08:47 PM
Thank you @rushikeshvartak