Project Management Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2009 01:13 PM
I am trying to put together some workflows for the Project Management Module and I want to create Project Tasks in the workflow. When I do, they do not attach to my parent project. Anyone have any suggestions? I wonder if I need to create a workflow activity like task but for the project task table.
Thanks-Michele

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2009 03:04 PM
It sounds like you need to associate the task with the Project in your 'Task' activity. The 'Task' activity just creates a task that will stand on its own with no association to anything unless you create that association.
What I think you need to do is check the 'Advanced' checkbox on the 'Task' activity that you are using to create your project task and put the following line in the resultant script box. It will project of the current workflow the parent of the task you are generating.
task.parent = current.sys_id;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2009 06:45 AM
Thanks a bunch...
I found that task.project = current.sys_id; worked