I am currently using the Uipath Studio Community Edition, is there a way to use a sequence from a process in another process. I cant seem to find how to do it. The process only allows me to save an existing sequence but not open another sequence.
Asked
Active
Viewed 318 times
1 Answers
2
What you need is the Invoke Workflow file. More here.
So let's assume:
- you have a process with the file Main.xaml
- you have a process with the file ExternalSequence.xaml
- you want to use the Main.xaml and use the process from ExternalSequence.xaml in it
- now in the folder of Main.xaml create a new folder called WorkFlows
- move the ExternalSequence.xaml into the WorkFlows folder
- add the activity Invoke Workflow file in Main.xaml
- into the parameter WorkflowFileName write WorkFlows\ExternalSequence.xaml (use the file search)
- run the Main.xaml now
Now the process of ExternalSequence.xaml should have been executed.

kwoxer
- 3,734
- 4
- 40
- 70
-
Good questions deserve good answers. I had a similar when I was starting. But I recommend you to go the good tutorials. They gonna show you all those stuff. But you need much time for them. – kwoxer Jan 06 '20 at 06:54