Hi,I am using Teamsite 6.7.1 SP1 - WFM 1.0.0.1 @ UNIX.SUMMARY: From external task I am calling an ipl. In that ipl I am computing a value which need to be returned to the workflow.PROBLEM: How can i pass a variable's value from an ipl to a task in the workflow.Thanks,Retesh
1) Create a global variable in WFM (doing so makes the variable accessible to all tasks).2) Assign the desired value to variable from ipl
$workflow = new TeamSite::WFworkflow($id);$tasks = $workflow->SetVariable($name, $value);
my($workflow) = new TeamSite::WFworkflow($wfid); $workflow->SetVariable($IW_CV(cname), $task_owner);