import java.util.Hashtable; import oracle.iam.request.api.RequestService; import oracle.iam.request.exception.AccessDeniedException; import oracle.iam.request.exception.RequestServiceException; import oracle.iam.request.vo.Request; public class CloseRequestAPI { RequestService reqManager; public CloseRequestAPI() { super(); } public static void main(String[] arg) throws RequestServiceException, AccessDeniedException { CloseRequestAPI oim=new CloseRequestAPI(); oim.OIMConnection(); oim.closeReq("20541"); } public void OIMConnection(){ reqManager = Platform.getService(RequestService.class); } public void closeReq(String userId) throws RequestServiceException, AccessDeniedException { reqManager.closeRequest(userId); } }
Oracle Identity Manager (OIM R2PS2/PS3/12C) is a highly flexible and scalable enterprise identity administration system that provides operational and business efficiency by providing centralized administration & complete automation of identity and user provisioning events across enterprise as well as extranet applications.
API Code to Close Request.
Subscribe to:
Posts (Atom)
About OIM
Oracle Identity Management enables organizations to effectively manage the end - to - end life - cycle of user ide...
Popular Posts
-
OIM API's Sample Code : Videos: Massive Gaze Videos Connection Related API's : OIM DB Connection/ Data Source connection ...
-
Videos: Massive Gaze Videos 1. Basic OIM Information 2. MDS Export/Import 3. Steps For R2PS2 / R2PS3 Custom Pre-processor Ev...
-
Videos: Massive Gaze Videos 1. Query to get OIM Provsioned/provisioning Account details 2. Query to get usr keys For Rejected / ...
Hi,
ReplyDeleteI have used above logic. It is closing the request, however Request is still visible in Pending approval section if Requestor is an end user. I am working on 11gR2PS3.
Please assist how to remove it from Pending approval section.