How to Transform a Tree into a Routine
Convert your trees into routines.
Overview
This guide covers the process for converting trees into routines.
Process
Follow these steps to transform a tree into a routine:
-
Find the tree you want to convert in the Trees window, then click Actions > Export.
-
Click Download.
-
Open the downloaded file in a text editor and make the following changes:
-
Change the
<sourceName>
tag content to "-". -
Change the
<sourceGroup>
tag content to "-". -
Change the
<type>
tag content to "Global Routine".- Add the following tag to the file:
<definitionId>[routinename_]routine</definitionId>
where\[routinename\]
is replaced with a name of your choice. The name must contain only alphanumeric characters and underscores and always end with "routine".
- Add the following tag to the file:
-
Change the
<name>
tag content to use a new name. -
Save the updated file.
-
In the Platform's Global Workflow console, click Routines.
-
Click Import Routine.
-
Drag and drop the file you want to import into the Import Routine window, or click Browse to search for and select the file.
Example Tree Export
<tree schema_version="1.0">
<sourceName>Kinetic Request CE</sourceName>
<sourceGroup>Forms > services > Exported Tree</sourceGroup>
<type>Tree</type>
<status>Active</status>
<taskTree schema_version="1.0" version="">
<name>Submitted</name>
Example Modified to a Routine
<tree schema_version="1.0">
<sourceName>-</sourceName>
<sourceGroup>-</sourceGroup>
<definitionId>routine_converted_to_routine</definitionId>
<type>Global Routine</type>
<status>Active</status>
<taskTree builder_version="" schema_version="1.0" version="">
<taskTree schema_version="1.0" version="">
<name>Converted to Routine</name>
Updated 10 months ago