Our SAP GRC Implementation has custom Access Request Type. We are integrating the same with IdentityIQ for Access Management. We have added the list of custom access request type to the Application XML under “access_request_type_mapping” attribute. But we are not able to send it out to SAP GRC during provisining.
we tried to use the following code but did not working
if (“IdentityRefresh”.equals(source)) {
log.warn(“Request is via Role Propogation”);
AttributeRequest attrRequest = new ProvisioningPlan.AttributeRequest();
attrRequest.setName(“CustomRequestType”);
attrRequest.setOperation(ProvisioningPlan.Operation.Set);
attrRequest.setValue(“028”);
}
Put the CustomRequestType as an AttributeRequestinside the SAP GRC AccountRequest of the provisioning plan (this should be happening inside of your before provisioning rule)
Please let me know if this helps. If not, please upload your entire ‘before provisioning’ rule.
Sorry Members, I was on leave and hence was not able to provide an update. There was some issue as SAP GRC End, the priority was not set correctly. We are not able to get it through. After changes to SAP GRC, we were able to get the custom attribute flown to it.
Thank you for helping and confirming that we were right.