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 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.
Is this relationship type available for an IdentityIQ Role that has a multiple-level structure?
Proposed Solution:
Hierarchy
Can a Account Group be used for the following scenario?
Proposed Solution:
Aggregating a specific set of accounts on an ' Account Aggregation ' .
Is this configuration option required when an engineer sets up a SCIM 2.0 application?
Solution: Comment Character
Is the following statement true about out-of-the-box reporting?
Proposed Solution:
All out-of-the-box reports in IdentityIQ are stored as TaskDefinition objects.
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 = context.getObjectByName(Policy.class, objectName);
// ... modify object ...
context.lockObject(object);
context.decache(object);
context.commitTransaction();
}
Is this statement true about certifications?
Proposed Solution:
A certification cannot be signed off until after the challenge period ends.
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
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;
}