TS 5.0.2 running on NT 4....
Below is a workflow that hangs with the status of "trying to lock files" regardless of path. The files are locked by user NAM-MD-01\lm50, the job is being submitted by NAM-MD-01\lm50. lm50 is signed on as a master. All the users specified in the group task are also masters.
When the task is passed on, it just hangs trying to pass the locks to the new owner. The locks are NOT passed. If I set lock="f" then the job runs just fine, except the locks don't flow with the job.
Here is the work flow:
<workflow name = "test lock" owner = "__INSERT__($sOwner);" creator = "__TAG__('iw_user');" description = "__INSERT__($uDescription);">
<usertask lock = "f" name = "AuthorChanges" owner = "__INSERT__($sOwner);" start = "t" readonly = "f" description = "__INSERT__($uDescription);">
<areavpath v = "__INSERT__($cArea_VPath);"/>
<successors>
<successorset description = "End Job">
<succ v = "endTask"/>
</successorset>
<successorset description = "proceed to ddb">
<succ v = "passtoddb"/>
</successorset>
<successorset description = "proceed to wpt">
<succ v = "passtowpt"/>
</successorset>
</successors>
__INSERT__($iw_selected_files);
</usertask>
<usertask lock = "t" name = "passtoddb" owner = "nam-md-01\ddb" start = "f" readonly = "f" description = "__INSERT__($uDescription);">
<areavpath v = "__INSERT__($cArea_VPath);"/>
<successors>
<successorset description = "End Job">
<succ v = "endTask"/>
</successorset>
</successors>
</usertask>
<grouptask lock = "t" name = "passtowpt" start = "f" readonly = "f" description = "__INSERT__($uDescription);" retainowner = "f">
<areavpath v = "__INSERT__($cArea_VPath);"/>
<successors>
<successorset description = "End Job">
<succ v = "endTask"/>
</successorset>
</successors>
<sharedby>
<user v = "NAM-MD-01/ddb"/>
<user v = "NAM-MD-01/lm50"/>
<user v = "NAM-MD-01/pv1"/>
<user v = "NAM-MD-01/SRS2"/>
<user v = "NAM-MD-01/ub1"/>
</sharedby>
</grouptask>
<endtask name="endTask" />
</workflow>
Edited by bowker on 07/22/02 06:44 AM (server time).