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.
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:
Write logic in a BeanShell rule, task, or workflow step to created the audit event, populated with the appropriate data values.
Is this configuration option required when an engineer sets up any application?
Proposed Solution:
Identity Attribute
An organization is making a change at the regional level.
Many users of a financial system have incorrect entitlements. Some users are missing entitlements, and some users have excess entitlements. Work needs to be performed to clean up access.
Is this one of the IdentityIQ batch request types that can help meet this goal?
Proposed Solution:
Add Entitlement
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:
To store an image for each identity in an extended attribute, the length property in the extended attribute definition should be set to 9000.
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;
}
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 " / >
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();
}
Can this be achieved using Rapid Setup user interface configuration options?
Proposed Solution:
Disable an account on a particular application and delete it 30 days later during Leaver events.
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.