Summer Certification Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: cramtick70

IdentityIQ-Engineer SailPoint Certified IdentityIQ Engineer Questions and Answers

Questions 4

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 to= " Stop " when= " !ref:approved " / >

< Transition to= " Audit " when= " script:sailpoint.tools.Util.isNotNullOrEmpty(comment); " / >

< Transition to= " Provision " / >

Options:

A.

Yes

B.

No

Buy Now
Questions 5

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 6

Is this a valid step to take when importing SailPoint XML file objects into IdentityIQ?

Proposed Solution:

Select the file from Global Settings > Import From File.

Options:

A.

Yes

B.

No

Buy Now
Questions 7

Can the following action be performed using Rapid Setup application onboarding?

Solution: Specify account correlation using a rule.

Options:

A.

Yes

B.

No

Buy Now
Questions 8

How should an engineer schedule the tasks to most efficiently achieve the following goals?

Goals:

• Process the Employee Authoritative application at 5:00 AM and 12:00 PM.

• Process the Contractor Authoritative application at 5:10 AM and 12:10 PM.

• Process the Active Directory application at 5:20 AM and 12:20 PM.

• Process the Finance application at 8:00 PM.

• Check for expired work items at 12:00 AM.

• Perform identity request maintenance at 2:00 AM.

Schedule parameters:

• Each application aggregation takes anywhere between 30 minutes and 2 hours.

• The run schedule is for a 24-hour period, which begins at 12:00 AM.

Instructions:

• Drag the required tasks from the left into the answer area on the right, and place them in the correct order, starting at 12:00 AM.

• Ordinal numbers (such as 1st, 2nd, and 3rd) in the options indicate which run of the day it is for the task type.

• There will be unused task options.

Options:

Buy Now
Questions 9

Is this configuration option required when an engineer sets up any application?

Proposed Solution:

Filter String

Options:

A.

Yes

B.

No

Buy Now
Questions 10

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 11

Is this a purpose of an IdentityIQ certification?

Proposed Solution:

to attest assignment of roles to users

Options:

A.

Yes

B.

No

Buy Now
Questions 12

Can the following IdentityIQ object be extended to store client-specific data by updating the corresponding .HBM file?

Proposed Solution:

CertificationItem

Options:

A.

Yes

B.

No

Buy Now
Questions 13

Is this a purpose of an IdentitylQ certification?

Solution: to certify user expense reports

Options:

A.

Yes

B.

No

Buy Now
Questions 14

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 15

Match the following IdentitylQ 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.

Options:

Buy Now
Questions 16

Is the following statement true?

Solution: Every Link object must be associated to an Identity object

Options:

A.

Yes

B.

No

Buy Now
Questions 17

Select the best policy type for defining each access policy. Use the drop-down menus to select your answers.

Options:

Buy Now
Questions 18

Can the rule library named Common Rules Library " be included in a Rule by adding this code?

Solution:

Options:

A.

Yes

B.

No

Buy Now
Questions 19

Is this a default functionality of the Lifecycle Manager (LCM) module?

Solution: Terminate Identity

Options:

A.

Yes

B.

No

Buy Now
Questions 20

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

Options:

A.

Yes

B.

No

Buy Now
Questions 21

Can the search type in Syslog be used to accomplish this result?

Solution: Identifying all Link objects from a particular application

Options:

A.

Yes

B.

No

Buy Now
Questions 22

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 23

Is this a purpose of an IdentitylQ certification?

Solution: to review a snapshot of a user ' s system access

Options:

A.

Yes

B.

No

Buy Now
Questions 24

Is the following statement true about out-of-the-box reporting?

Proposed Solution:

All IdentityIQ report results are stored on IdentityIQ application servers.

Options:

A.

Yes

B.

No

Buy Now
Questions 25

Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?

Proposed Solution:

Specify the email template for notifications.

Options:

A.

Yes

B.

No

Buy Now
Questions 26

Is the following statement about workflow step types and their usage true?

Proposed Solution:

A step with the attribute wait= " 1 " will cause the workflow to wait for at least one minute. The workflow will be revived on the next run of the Perform Maintenance Task, after the wait period is over.

Options:

A.

Yes

B.

No

Buy Now
Questions 27

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: Set the quicklink options to Tor Others " in order to launch the workflow immediately when the quicklink is clicked.

Options:

A.

Yes

B.

No

Buy Now
Questions 28

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.Application;

import sailpoint.object.Identity;

import sailpoint.object.Link;

import sailpoint.tools.GeneralException;

public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException {

Application application = context.getObjectByName(Application.class, " MagicBox " );

IdentityService service = new IdentityService(context);

List < String > accountNames = new ArrayList < String > ();

List < Link > links = service.getLinks(identity, application);

if (links != null) {

for (Link link : links) {

accountNames.add(link.getNativeIdentity());

}

}

return accountNames;

}

Options:

A.

Yes

B.

No

Buy Now
Questions 29

Is this where email templates can be viewed after product installation?

Proposed Solution:

In the Debug page as an EmailTemplate object.

Options:

A.

Yes

B.

No

Buy Now
Questions 30

A client wants users who belong to an IdentitylQ workgroup named Management to be able to request entitlements and roles, but only for other users whose location attribute is the same as theirs.

Is this a population that will achieve the goal?

Solution: Create a quicklink population, set the membership match list to the IdentitylQ workgroup " Management, " and set " Who can members request for? " as report to the requester.

Options:

A.

Yes

B.

No

Buy Now
Questions 31

For a user who wants to be able to enable an account for a subordinate or themselves through Manage Accounts, does this configuration need to be performed in Lifecycle Manager (LCM)?

Select the Rehire action under Manage Accounts Options in the LCM Configuration.

Solution: Select the Rehire action under Manage Accounts Options in the LCM Configuration.

Options:

A.

Yes

B.

No

Buy Now
Questions 32

Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?

Proposed Solution:

Specify which applications support new account requests.

Options:

A.

Yes

B.

No

Buy Now
Questions 33

Is the following true of Identity Provisioning Policies?

Solution: The Create Identity Provisioning Policy will be applied to identity creation during aggregation from an authoritative source so that identities will be created with valid/authorized attribute values.

Options:

A.

Yes

B.

No

Buy Now
Questions 34

Is this configuration option required when an engineer sets up any application?

Proposed Solution:

Identity Attribute

Options:

A.

Yes

B.

No

Buy Now
Questions 35

Can the rule library named “Common Rules Library” be included in a Rule by adding this code?

Proposed Solution:

< ReferencedRules >

< Reference class= " sailpoint.object.RuleLibrary " name= " Common Rules Library " / >

< /ReferencedRules >

Options:

A.

Yes

B.

No

Buy Now
Questions 36

Is this configuration option required when an engineer sets up a SCIM 2.0 application?

Solution: Name

Options:

A.

Yes

B.

No

Buy Now
Questions 37

Is this a correct procedure for testing generated emails in a non-production system?

Solution: Change the Email Notification Type to POP3 under Global Settings > Configure IdentitylQ Settings > Mail Settings, run the test scenario. and verity if the emails were successfully delivered to mailboxes specified on Identity objects.

Options:

A.

Yes

B.

No

Buy Now
Questions 38

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 39

Is the following statement about IdentitylQ rule inputs and outputs correct?

Solution: The lypical input variables for a rule are listed in the BeanShell rule editor in IdentitylQ, based on the rule registry.

Options:

A.

Yes

B.

No

Buy Now
Questions 40

A customer wants to make changes in their IdentitylQ user interface. Consider branding and other IdentitylQ Ul changes. Is this statement valid?

Solution: Text on the login page is set through message keys in the message catalog.

Options:

A.

Yes

B.

No

Buy Now
Questions 41

An implementation engineer needs to perform an upgrade of IdentitylQ between releases. Is the following statement true?

Solution: Supported platforms of an older version of IdentitylQ will always be supported in newer versions of IdentitylQ.

Options:

A.

Yes

B.

No

Buy Now
Questions 42

Is this statement true about identitylQ ' s syslog event storage?

Solution: IdentitylQ logging and auditing both require extra function calls within the application and will generate data that can be compressed to avoid any storage and Improve overall performance.

Options:

A.

Yes

B.

No

Buy Now
Questions 43

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 44

Is this configuration option required when an engineer sets up any application?

Proposed Solution:

Owner

Options:

A.

Yes

B.

No

Buy Now
Questions 45

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 46

Can the following action be performed using Rapid Setup application onboarding?

Solution: Specify account correlation by mapping an identity attribute to an account attribute.

Options:

A.

Yes

B.

No

Buy Now
Questions 47

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 48

IdentityIQ 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 IdentityIQ to provide mail server and mail server authentication details.

Is this a required setting that an engineer must set up in IdentityIQ in order to ensure successful communication with the SMTP server?

Proposed Solution:

SMTP Port

Options:

A.

Yes

B.

No

Buy Now
Questions 49

Can the search type in Syslog be used to accomplish this result?

Solution: Identifying the number of employees that report to a specific person

Options:

A.

Yes

B.

No

Buy Now
Questions 50

Is the following statement about workflows and sub-workflows (subprocesses) true?

Proposed Solution:

Many standard LCM sub-workflows can be leveraged in custom workflows, with their behavior controlled via input variables.

Options:

A.

Yes

B.

No

Buy Now
Questions 51

is the following a valid role option that can be configured?

Solution: Configure a role to include a set of IdentitylQ capabilities.

Options:

A.

Yes

B.

No

Buy Now
Questions 52

Can the search type in Syslog be used to accomplish this result?

Solution: Launching a certification using the search results

Options:

A.

Yes

B.

No

Buy Now
Questions 53

Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?

Proposed Solution:

Check if an access request would violate any policies, and allow the requester to review before submitting.

Options:

A.

Yes

B.

No

Buy Now
Questions 54

Is this a purpose of an IdentitylQ certification?

Solution: to attest lo a user ' s system access

Options:

A.

Yes

B.

No

Buy Now
Questions 55

Can the rule library named Common Rules Library " be included in a Rule by adding this code?

Solution:

Options:

A.

Yes

B.

No

Buy Now
Questions 56

Can this action be performed as part of configuring an application definition in IdentitylQ?

Solution: Specify which users should be provisioned with a basic account as part of a joiner event.

Options:

A.

Yes

B.

No

Buy Now
Questions 57

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.

Options:

A.

Yes

B.

No

Buy Now
Questions 58

Is the following a valid role option that can be configured?

Proposed Solution:

Configure a role that can be requested only if the user already has a related role.

Options:

A.

Yes

B.

No

Buy Now
Questions 59

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.

Options:

A.

Yes

B.

No

Buy Now
Exam Code: IdentityIQ-Engineer
Exam Name: SailPoint Certified IdentityIQ Engineer
Last Update: Jun 28, 2026
Questions: 121
IdentityIQ-Engineer pdf

IdentityIQ-Engineer PDF

$25.5  $84.99
IdentityIQ-Engineer Engine

IdentityIQ-Engineer Testing Engine

$30  $99.99
IdentityIQ-Engineer PDF + Engine

IdentityIQ-Engineer PDF + Testing Engine

$40.5  $134.99