SAP GRC - Access Management Integration mode - Identity attribute inactive = true then disable all SAP GRC Systems

Which IIQ version are you inquiring about?

Version 8.4

Share all details related to your problem, including any error messages you may have received.

We have requirement to disable all SAP systems when identity is disabled in IIQ, I’m trying with attribute sync option and setting up “Valid To” account attribute in transformation rule and setting account request operation from modify to disable in before prov rule…

Questions
Do we need to set “Valid To” attribute or Status attribute of the SAP GRC account
How do we set multiple values for “Valid To” or “Status” in case identity have associated with multiple systems connected in SAP GRC account
Any sample code for both transformation rule and before provisioning rule

Thank you

Hi @irappahosamani,
You always have the option to use the “IIQDisabled” approach in a Customization rule for a connector if you need site-specific behavior, or do not want to leverage the functionality compiled into the connector.
Ex: `import org.apache.log4j.Logger;

import org.apache.log4j.Level;

// Declare a logger class for us to isolate these messages during aggregation.

Logger log = Logger.getLogger(“sailpoint.services.ldapCustomizationTest”);

log.setLevel((Level) Level.DEBUG); // TODO: Remove debug logging in production use.

String acctName = object.getIdentity();

// If job title has been populated with “TERMINATED” set the account to disabled.

String titleString = object.getAttribute(“title”);

if ( (null != titleString) && (0 != titleString.length()) ) {

if (“TERMINATED”.equalsIgnoreCase(titleString)) {

  object.put("IIQDisabled", true);

  log.debug("The 'title' set to terminated on [" + acctName + "], marking IIQDisabled as true.");

}

} else {

log.debug(“No ‘title’ field populated on [” + acctName + “], assuming active account.”);

}

return object;`

For Furhter details refer these : Understanding active and inactive accounts and identities: IIQDisabled - Compass (sailpoint.com)

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.