Hi,We're using a really simple workflow (workflow modeller) to submit files to our webserver and I can't work out how on earth to stop the comments box from appearing on one of our cgi tasks. The cgi task in question has the CGI script name "/iw-cc/transitiontask". It is preceeded by another CGI task with the CGI script name "/iw-cc/Workflow/WebTask.do". It is followed by a run of the mill submit task.When the workflow reaches the CGI task before the submit, a prompt is displayed asking for the user to add comments: "Add Comments for Task "Does anyone know how to get rid of this?many thanks,Alyssa
transitiontask
/iw-cc/Workflow/WebTask.do
TeamSite::WFtask's CallBack(...,...)
TeamSite::CGI_lite's iwcallback(...,...)
#!/opt/Interwoven/TeamSite/iw-perl/bin/iwperl$| = 1;use strict; # Try to catch errors as early as possible.use CGI;use URI::Escape;use TeamSite::CGI_lite;use TeamSite::WFtask;use TeamSite::WFworkflow;my $cgi = new CGI;my $taskId = $cgi->param("iw_taskid");my $task = new TeamSite::WFtask($taskId);my $transition = "Flow156";my $donePage = "/iw-cc/transitiontask?taskid=" . $taskId . "&transition=" . uri_escape($transition) . "&do_transition=true";print $cgi->redirect(-url => $donePage);