On the catalog task form I would like some fields/variables to show on the tasks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2018 11:27 AM
On the catalog task, I have created a new section called Parent REQ/RITM information. On the RITM there is a variable called Contact Phone Number. How can I add this field to the new section I created? When I go to configure form layout for the sctask there is no option to choose the contact phone number... I expanded the Request Item, then Variables but it is not showing..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 08:28 AM
I just added the workflow below
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 08:33 AM
And this is the script in the Parallel flow launcher:
javascript:
coordinator = new WorkflowCoordinator( {workflow:'MWHC Application/Software Request - Sub'} );
var apps = current.variables['applications'].toString().split(',');
for (var i = 0; i < apps.length; i++) {
coordinator.add({
'u_applications' : apps[i]
});
}
coordinator;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2018 08:23 AM