Summer Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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.

A.

Yes

B.

No

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.

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.

A.

Yes

B.

No

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

Solution: Change the Email Notification Type to Redirect to file using FTP protocol under Global Settings > Configure IdentitylQ Settings > Mail Settings, run the test scenario, and verify that the email text saved to the redirected file.

A.

Yes

B.

No

Is this what should be performed in order to generate the database script to extend Managed Attribute attributes in the IdentityIQ database on the initial installation?

Proposed Solution:

Run the extendedSchema script on the IdentityIQ database.

A.

Yes

B.

No

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

Solution: WorkItem

A.

Yes

B.

No

Is this a valid statement about connector rules?

Solution: A Post-Iterate Rule, if configured, is run after reading accounts from a SQL Loader application.

A.

Yes

B.

No

Is this relationship type available for an IdentityIQ Role that has a multiple-level structure?

Proposed Solution:

Hierarchy

A.

Yes

B.

No

Is the following statement true?

Proposed Solution:

A Bundle profile must be associated to an Identity object.

A.

Yes

B.

No

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;

}

A.

Yes

B.

No