Where can I find the Code of the process and objects saved and how to access it?

diarselimi

New Member
Hello all,

In my previous question, a member answered which was interesting and I didn't know that, If you drag and drop an object into an editor the generated code will pop up.
Question.

So I was wondering where can I find the generated code of the processes and objects?
I am guessing that it is saved in a database if that is the case then how do I access the database and just get the code from there.
 

dallangoldblatt

New Member
All processes and objects are stored as xml in the database that you set up Blue Prism to connect to. The table you are looking for is dbo.BPAProcess. If you have access to this database, the xml can be obtained using a simple query:

SELECT name, ProcessType, processxml FROM dbo.BPAProcess

The name column stores the process/object name, the ProcessType column stores whether it is a Process or Object, and the processxml column stores all of the xml needed to create the process/object.
 
Top