Home
TeamSite
WorkFlow Templates in Teamsite GUI
Muthuvedi
How do I make the workFlow templates in examples and solutions directory available to Teamsite GUI? I can see the only the templates from default directory in the Teamsite GUI. I have the entries of the new wft's created in available_template.cfg file which I created using WorkFlow builder.
Any Help?
Find more posts tagged with
Comments
Migrateduser
I thought Workflow Builder was supposed to make it easier for people to do this stuff.
I believe you will need to manually edit your available_templates.cfg file to add the other wft files you want to see if they are not already in there. It's quite easy. Just cut and paste one of the entries in available_templates.cfg and modify the path to be the wft file you want to add.
Dave Smith
Sr. Software Engineer
Nike, Inc.
(503) 671-4238
DavidH.Smith@nike.com
akshathp
I understand you already have enteries in available_templates.cfg file for the workflows from default folder. You can edit the cfg file for a new entry.
Example:
<template_file name='Title for your workflow' path='examples/workflowfilename.wft'>
<command_list>
<command value='new_job' />
<command value='all' include='no' />
</command_list>
<path file_path="/default/main/branchname" />
<branch_list>
<branch value ="all" include ="yes"/>
</branch_list>
<role_list>
<role value='editor' include='yes' allusers='yes'/>
<role value='all' include='yes' allusers='yes'/>
</role_list>
</template_file>
So, you could have the path for your wft file start with examples or solutions based on whichever wft entry you want to place in this file.
Hope this helps!
Akshat Pramod Sharma
Interwoven Inc.
Muthuvedi
Thank you guys, It helped.