An engineer needs to first create a custom audit event and then set up an associated report.
What are four steps to accomplish this goal?
Proposed Solution:
Set up a new AuditAction in the AuditConfig object XML:
< AuditAction displayName= " Custom New Audit Event " enabled= " true " name= " actionname " / >
Is this a default role type that is available in identitylQ?
Solution: Entitlement Role
Is this configuration option required when an engineer sets up any application?
Proposed Solution:
Owner
A manager wants to extend the access granted to an employee.
Is this a default role type that is available for the manager to request in IdentitylQ during the access request process?
Solution: Business Role
An implementation engineer needs to perform an upgrade of IdentitylQ between releases. Is the following statement true?
Solution: Every version release (excluding patch releases) between the current version of IdentitylQ and the target version of IdentitylQ must be installed in sequential order for an upgrade.
A bank is two years into an ongoing project to provide all access through roles. The bank is actively using roles and actively adding to their role model. They need to ensure that all roles include the correct entitlements.
Will this certification type achieve the goal?
Solution: Role Composition Certification
Is this statement valid regarding the control and usability of the Debug pages in IdentityIQ?
Proposed Solution:
When creating a new object through the Debug-Object page, IDs are automatically generated when the object is saved.
A customer wants to make changes in their IdentitylQ user interface. Consider branding and other IdentitylQ Ul changes. Is this statement valid?
Solution: Primary and secondary colors are set through the IdentitylQ Configuration > Miscellaneous page.
Is this a benefit of using the Run Rule feature of the Debug-Object page?
Proposed Solution:
It can be used to display the return value of simple code.
Can the following action be performed using Rapid Setup application onboarding?
Proposed Solution:
Specify manager correlation by mapping an identity attribute to an account attribute.
Can this be achieved using Rapid Setup user interface configuration options?
Solution: Disable an account and remove all its entitlements on a particular application during Mover events.
Is the following statement true?
Solution: Every Link object must be associated to an Identity object
Is this what should be performed in order to generate the database script to extend Application attributes in the IdentitylQ database on the initial installation?
Solution: Run the command iiq extendedSchema in the IIQ_Home/WEB-INF/bin directory.
Can the Provisioning tab under " Administrator Console ' be used to do the following task?
Solution: View the specific operations on each attribute being provisioned.
Is this configuration option required when an engineer sets up an Active Directory application?
Proposed Solution:
Name
Is this statement true about certifications?
Proposed Solution:
A challenge period allows a reviewer ' s manager to challenge the decisions made by the reviewer.
Is this what should be performed in order to generate the database script to extend Application attributes in the IdentitylQ database on the initial installation?
Solution: Run a build with the updated schema placed inside it.
Assuming that the policy violation owner has the necessary permissions, is this a valid option for the policy violation owner to use when acting on a policy violation of type ' Account Policy ' ?
Proposed Solution:
Allow
Is this statement valid regarding the control and usability of the Debug pages in IdentitylQ?
Solution: The Debug-Logging page does not have to be reloaded when the log4j file is altered while the application server is running.
Is this a true statement about localization support in IdentitylQ?
Solution: The language displayed in the user interface is always based on the default language selected in the global settings.
Is the following statement about workflows and sub-workflows (subprocesses) true?
Proposed Solution:
It is best practice to leverage standard LCM sub-workflows as much as possible for custom provisioning workflows.
Is the following statement true?
Proposed Solution:
All ManagedAttribute objects associated to an Identity can be viewed on the ‘Policy’ tab from ‘View Identity’ QuickLink.
An engineer needs to trigger a workflow when a Division attribute changes from IT to Senior IT, but only when the user is a manager.
Is this a valid process that the engineer could use to launch a workflow for a lifecycle event?
Proposed Solution:
Create a trigger with an event type of attribute change on the managerStatus attribute with the previous value of true and the new value of false, and add an included identities rule for when the user ' s division attribute had a previous value of IT and a new value of Senior IT.
Is this statement correct about writing and executing source mapping rules to populate identity attributes?
Solution: Once the value for the identity attribute has been calculated, the rule must persist the identity attribute to the database.
A bank is two years into an ongoing project to provide all access through roles. The bank is actively using roles and actively adding to their role model. They need to ensure that all roles include the correct entitlements.
Will this certification type achieve the goal?
Solution: Application Owner Certification
Is this statement true about the IdentitylQ Audit functionality and/or options?
Solution: The built-in auditing options are immutable; they are always recorded. However, custom audits can be turned on or off.
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?
Solution: Source Mappings: Application Rule
Is this statement true about certifications?
Solution: All certifications include generation, the active period, sign-off, and the end period.
Is this statement true about certifications?
Solution: The staging period is required.
The business analysts for a large hospital need to confirm that their role assignment rules are working correctly. They are performing a final test on the production system by certifying the users who have been assigned the role. The access reviews should be sent to the security team for final sign-off.
Will this certification type achieve the goal?
Proposed Solution:
Role Membership Certification
IdentityIQ has been installed and set up with the contents of IdentityExtended.hbm.xml.
Is this a correct statement about the installation?
Proposed Solution:
An unlimited number of additional searchable placeholder extended attributes can be added to this installation beyond the 10 shown.
Is this an example of a joiner lifecycle event?
Proposed Solution:
A contractor whose contract expired and accounts were disabled has a new contract with the company; the contractor needs all of their previous accounts enabled.
An engineer needs to first create a custom audit event and then set up an associated report. What are four steps to accomplish this goal?
Solution:
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?
Solution: Edit Mode: Read Only
Can an Escalation Rule be used to handle this scenario?
Solution: Automatically reassign parts of an access review to a different certifier.
Is the following statement true?
Solution: All Application objects must have an Identity object as the owner.
Is the following a true statement about IdentityIQ authentication and authorization?
Proposed Solution:
What users are authorized to do and see in IdentityIQ is partly controlled via the capabilities they have, which can be assigned directly to their identity.
The engineer is writing code to modify Policy objects. Is this the correct way to get, lock, modify and save the object, given the name of the object?
Proposed Solution:
public void updateObject(SailPointContext context, String objectName) throws GeneralException {
Policy object = ObjectUtil.transactionLock(context,
Policy.class, objectName);
// ... modify object ...
context.saveObject(object);
context.commitTransaction();
}
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;
}
Can the following action be performed using Rapid Setup application onboarding?
Proposed Solution:
Specify manager correlation using a rule.
For a user who wants to be able to unlock an account for a subordinate or themselves through Manage Accounts, does this configuration need to be performed in Lifecycle Manager (LCM)?
Proposed Solution:
Select the Rehire action under Manage Accounts Options in the LCM Configuration.
IdentityIQ has been installed and set up with the contents of IdentityExtended.hbm.xml as follows:

Is this a correct statement about the installation?
Proposed Solution:
IdentityIQ comes with firstname, lastname, email, display name, and manager as the searchable attributes that are defined out of the box.
Is this a piece of information that an engineer needs when initially setting up a new IdentityIQ sandbox environment?
Proposed Solution:
the IdentityIQ version
An implementation engineer needs to perform an initial installation of identitylQ.
Drag the options from the left into the answer area on the right, and place them in the correct order.

A manager wants to extend the access granted to an employee.
Is this a default role type that is available for the manager to request in IdentityIQ during the access request process?
Proposed Solution:
HR Role
The engineer is working on a workflow implementation.
After a form step, the workflow can transition to three steps:
Stop if the Reject (back) button is used,
Audit if the Approve (next) button is used and the field named comment is returned from the form to the workflow variable comment and has a value,
Provision otherwise.
The engineer writes the transitions in XML code.
Is this a valid implementation?
Proposed Solution:
< Transition >
< Source >
if (!approved) return " Stop " ;
if (comment) return " Audit " ;
return " Provision " ;
< /Source >
< /Transition >
Is this a purpose of an IdentitylQ certification?
Solution: to attest to a user ' s integrity
Is this statement true about IdentityIQ ' s syslog event storage?
Proposed Solution:
IdentityIQ logging events are stored in a flat file instead of a database.
Can the Environment tab under ‘Administrator Console’ be used to do the following task?
Proposed Solution:
View status of installed SailPoint modules/extensions.
Is this an example of a mover lifecycle event?
Solution: An employee quits their job and needs all of their accounts disabled.
Is the following true of Identity Provisioning Policies?
Proposed Solution:
A self-service Registration Identity Provisioning Policy is required to support the self-service registration workflow (LCM Registration).
Is this statement true about identitylQ ' s syslog event storage?
Solution: IdentitylQ logging events are stored in a database table in addition to log files.
Is this a correct procedure for testing generated emails in a non-production system?
Proposed Solution:
Change the Email Notification Type to IMAP under Global Settings > Configure IdentityIQ Settings > Mail Settings, run the test scenario, and verify if the emails were successfully delivered to mailboxes specified on Identity objects.
Can this action be performed as part of configuring an application definition in IdentityIQ?
Proposed Solution:
Specify how new accounts should be provisioned via Create Rule.
Is the following statement about IdentityIQ rule inputs and outputs correct?
Proposed Solution:
For ease of implementation, all BeanShell rules in IdentityIQ have the same input and output variables.
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.
IdentityIQ has been installed and set up with the contents of IdentityExtended.hbm.xml as follows:

Is this a correct statement about the installation?
Proposed Solution:
Additional placeholder extended attributes can be added, beyond the 10 shown and up to a maximum of 20.
An engineer needs to first create a custom audit event and then set up an associated report.
What are four steps to accomplish this goal?
Proposed Solution:
Create a Custom Certification Event Schedule and associated ruleRunner task.
Is this statement correct about writing and executing source mapping rules to populate identity attributes?
Solution: The rule type must be IdentityAttribute.
Match the following IdentityIQ console commands to their functions.
Use the drop-down menus to select your answers. Answer options from the drop-down menus may only be used once. Some will not be used at all.

Is the following statement about workflow step types and their usage true?
Solution: The step actions available when editing a step in the Business Process Editor are: Script. Rule, Subprocess and Call Method.
Is the following a true statement about IdentityIQ authentication and authorization?
Proposed Solution:
An Identity can be a member of, at most, one QuickLink population.
Is this configuration option required when an engineer sets up a SCIM 2.0 application?
Solution: Comment Character
Is the following true of Identity Provisioning Policies?
Proposed Solution:
Identity Provisioning Policies can be defined to support creation of identities or editing of identities through the IdentityIQ UI.
Can the search type in Identity be used to accomplish this result?
Proposed Solution:
Identifying the number of employees that report to a specific person
Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?
Solution: Specify which access items may be requested.
For a user who wants to be able to unlock an account for a subordinate or themselves through Manage Accounts, does this configuration need to be performed in Lifecycle Manager (LCM)?
Proposed Solution:
Select " Allow managing existing accounts " in the Manage Accounts QuickLink configuration for the user ' s QuickLink population.
An engineer is developing an instance of IdentitylQ using the Services Standard Build (SSB) for a client. Is this a valid action the engineer can perform when setting up or using the SSB?
Solution: Place the client ' s identityiq. War file in the home directory of the build.
Is the following statement true about out-of-the-box reporting?
Proposed Solution:
All IdentityIQ report results are stored on IdentityIQ application servers.
Is this statement true about the Application, Identity, ManagedAttribute, Bundle, and Link objects in IdentityIQ?
Proposed Solution:
IdentityIQ uses the term ManagedAttribute to define the type of an account on an application, such as service account or privileged account.
Is this a default functionality of the Lifecycle Manager (LCM) module?
Proposed Solution:
Launch Certification Campaign
An implementation engineer needs to perform an upgrade of IdentityIQ between releases. Is the following statement true?
Proposed Solution:
IQService is automatically upgraded when upgrading IdentityIQ.
Can this be achieved using Rapid Setup user interface configuration options?
Solution: Disable an account and remove all its entitlements on a particular application during Leaver events.
Can the rule library named Common Rules Library " be included in a Rule by adding this code?
Solution:
Is this a benefit of using the Run Rule feature of the Debug-Object page?
Solution: It can be used to create/modify/delete SailPoint database objects.
Can the rule library named Common Rules Library " be included in a Rule by adding this code?
Solution:

Is this what should be performed in order to generate the database script to extend Application attributes in the IdentitylQ database on the initial installation?
Solution: Add the new object attribute to the Application ObjectConfig in IdentitylQ.
IdentitylQ is using emails to notify users about completion of steps within a process, or actions that need to be addressed.
To ensure this notification is working, a main configuration must be set up in IdentitylQ to provide mail server and mail server authentication details.
Is this a required setting that an engineer must set up in IdentitylQ in order to ensure successful communication with the SMTP server?
Solution: Email Protocol
Is the following statement true?
Proposed Solution:
All ManagedAttribute objects can have an Identity object as the owner.
Is the following statement true?
Proposed Solution:
A Bundle profile must be associated to an Identity object.