[html]use TeamSite::WFsystem ;
$system = new TeamSite::WFsystem() ;
my
@jobs = $system->GetActiveWorkflows();
foreach my $job (
@jobs){ print $job ;
print "\n";
}[/html]
When I run this script, I get following output in activejobs.txt file.
"ARRAY(0x18b16ac)"
So this is a reference to the array of active jobs. How can I print the list of active jobs in the system ? How can I use the reference to the array to print this list ?
Thanks