An engineer is assigned to configure an account attribute. The requirements are:
Purpose: Flag privileged accounts
Read from: Financial application, privileged attribute
Calculate from: Keystore application, responsibility-code attribute
Usage 1: Display as option in Advanced Analytics
Usage 2: Use when writing rules
Usage 3: Include in policies
Does the engineer need to set this configuration option on the account attribute to meet the requirements?
Proposed Solution:
Attribute Name
Is the following a valid role option that can be configured?
Proposed Solution:
Configure a role to include a single IdentityIQ SPRight object.
Is the following a true statement about IdentitylQ authentication and authorization?
Solution: What users can see and do in IdentitylQ can be party controlled by their authorized scope.
Can the following action be performed using Rapid Setup application onboarding?
Solution: Specify account correlation using a rule.
Is this statement true about the Application, Identity, ManageAttribute, Bundle, and Link objects in IdentitylQ?
Solution: An Application object is not required to aggregate external user account information into IdentitylQ.
The engineer is configuring a new application definition.
Due to company mergers, the customer has several different formats for employee number. The customer needs to match on the manager employee number to the manager identity, taking all of these formats into account.
Is this the rule an engineer should write to accomplish the goal?
Proposed Solution:
Write a ManagerCorrelation rule.
The engineer uses the sailpoint.api.IdentityService in a BeanShell method to look up and return all account names for an identity on the application ' MagicBox ' . Is this a correct implementation?
Proposed Solution:
import sailpoint.api.IdentityService;
import sailpoint.api.SailPointContext;
import sailpoint.object.Identity;
import sailpoint.object.Link;
import sailpoint.tools.GeneralException;
public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException {
IdentityService service = new IdentityService(context);
List < String > accountNames = new ArrayList < String > ();
Link link = service.getLink(identity, " MagicBox " );
while (link != null) {
accountNames.add(link.getNativeIdentity());
}
return accountNames;
}
Is the following statement true about out-of-the-box reporting?
Proposed Solution:
Reports can be scheduled to run at most once per day.
A client needs a custom quicklink, which only managers can launch, in order to launch a simple workflow. Is this a valid step to take during the development of this custom quicklink?
Solution: Insert the " Managers " quicklink population as the dynamic scope in the quicklink object.
Can the following action be performed using Rapid Setup application onboarding?
Proposed Solution:
Specify manager correlation using a rule.