- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Email to a Friend
- Printer Friendly Page
- Report Inappropriate Content
Spawning Links Should be Bidirectio nal
Status:
Implemented
When an item is spawned by a workflow there is an option to link link to the spawned item to the "spawned by" item. There should be an option in the spawing item to automatically link to the item it spawned. I know this can be done with abit of scripting but I think it really should just be a check box/option.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
Greetings,
The ability to do this has been implemented in a recent release. You can now return via the spawing script function. Please see below. You can see a script example here:
http://wikihelp.autodesk.com/PLM_360/enu/Help/Help
Create New Change Order and Set Up Lookup From Spawning Change Request
Create New Change Order and Set Up Lookup From Spawning Change Request
Creates a new item in the Change Orders workspace and sets the value of a "Spawned Change Order" field (SPAWNED_CO) in the associated Change Request item to the new Change Order. You would typically trigger this script after successful transitioning of the associated Change Order to the "Approved" workflow state.
newCO = createItem('WS_CHANGE_ORDERS');
newCO.TITLE = 'Release XYZ';
newCO.TYPE = '1 - Engineering';
newCO.URGENCY = '2 - Medium';
item.SPAWNED_CO = newCO;
Let us know if you need help!
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
