ProcessLog

Object that is used to retrieve justification information for a process or activity.

Availability

IBM® Tivoli® Identity Manager 5.1.0.13

IBM Security Identity Manager 6.x

IBM Security Identity Manager 7.0.

Notification and workflow context

Provided by
com.ibm.itim.script.extensions.ProcessLogExtension
Methods
ProcessLog.getJustificationByProcess(processid)
Retrieves the justification for the specified process.
Arguments
processid - String representing the generated unique identifier of the process for which you want to retrieve the justification.
Usage
var list = ProcessLog.getJustificationByProcess(process.guid);
var justification = “”;
if(list != null && list.size() > 0) {
justification=list.get(0);
}
ProcessLog.getJustificationByActivity(activityid)
Retrieves the justification for the specified activity.
Arguments
activityid - String representing the generated unique identifier of the activity for which you want to retrieve justification.
Usage
var list = ProcessLog.getJustificationByActivity(activity.guid);
var justification = “”;
if(list != null && list.size() > 0) {
justification=list.get(0);
}