Hi,
I'm trying to add files to a task, but I'm following error.
---------------------------------------------------------------
Invalid Workflow
ERROR: Could not add files to task Approval
ERROR: ERROR: 02429
ERROR: 02429: Error #02429
---------------------------------------------------------------
Below is the excerpt from my wft file.
--------------------------------------------------------------------
<usertask name="Approval"
owner="__TAG__('iw_areaowner');"
description="Author Content Approval"
readonly="t">
<areavpath v="__TAG__('iw_workarea');"/>
<successors>
<successorset description="Approve">
<succ v="Submit"/>
</successorset>
<successorset description="Reject">
<succ v="AuthorWork"/>
</successorset>
</successors>
<template_script><![CDATA[
if (
@submit_file != 0)
{
__INSERT__("<files>\n");
for (my $i=0; $i <
@submit_file; ++$i)
{
__INSERT__("
<file path='$submit_file[$i]' " .
"comment='__TAG__(File_comment_$i);'/>");
}
__INSERT__("</files>\n");
}
]]></template_script>
<activation>
<or>
<pred v="AuthorWork"/>
<pred v="Metadata"/>
</or>
</activation>
</usertask>
--------------------------------------------------------------------
I'm getting the same error when I tried to add files to Submit task.
I've tried starting the workflow as an Author as well as a master.
I'm using the same user who is owner of the workflow as well as owner of the workarea.
So it doesn't seem to be a permissions problem.
I'm using TS 552 SP3 with TST SP3 on Win 2k.
Any help is greatly appreciated.
Thanks in advance.
What can be wrong.