Current Process Instances

#foreach($proc in $list) #end
PIDProcess NameStatusNode Sequence
$proc.getInstanceID() $proc.getGraphName() #if($proc.getStatus() == 0) RUNNING #else COMPLETE #end #set($i = 1) #set($tl = $tokenService.getActiveTokensForInstance($proc.getInstanceID()) ) #foreach($token in $tl) #end
#set($graph = $graphManager.getGraph($proc.getGraphName()) ) #set($nodeName = $graph.getNode($token.getCurrentNodeID()).getDisplayName() ) $i $nodeName #set($i = $i + 1)
Home