Hi all,
I having a issue wherin I am having a Group task before a external task using iw_solution_email.ipl. I have to get the single owner who took the ownership of the group task and assign him as owner to the email task.
do i need to make modifications to iw_solution_email.ipl so that i assign the owner of the previous task to this task
($wfid, $taskid, $area) = (
@ARGV[0..2]);
$job = new TeamSite::WFworkflow($wfid);
$this_task = new TeamSite::WFtask($taskid);
$this_task->SetOwner($username);
like this
but how do i get username from the grp task provided i only have its name??? is there any other way to deal with this?????????