Hi Team,
I have customized my PLC workflow to add a custom CGI task using cgi script just before deployment task, which is working as expected but I am facing only one challenge that when I do a callback to next task, I am unable to see the window for next task. When I go to workflow tab I see the next task but not active. For deployment to initiate I have to press the button "start input task" to initiate the deployment.
if (lc($form_submit) eq "submit"){
my @finalFileList = split(",",$fileArr);
foreach my $fileVal (@finalFileList){
my $value = $task->RemoveFile($fileVal, "Removed by Workflow");
}
$| = 1; #Flush the output buffer right away, optional
print qq(Content-type: text/html\n\n);
print qq(<html><body>Files updated in job</body></html>);
my ($success, $immediate) = $task->CallBack(0, "files updated, starting deployment");
}
Can anyone tell how to make next task (deployment task) active once this callback is called.
Manu