On the catalog task form I would like some fields/variables to show on the tasks.

velvet
Mega Guru

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..

find_real_file.png

12 REPLIES 12

I just added the workflow below

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;

Sub Workflow

Script in the Run Script Create Task