Many thanks, this was exactly what I was looking for but could not find the table with the history, not considering it is part of the audit trail and not stored as historized process.
I have queried BPAAuditEvents for the last modification entry of this process. The related entries were found with:
select max(eventid) from BPAAuditEvents where sNarrative like '%myObjectName%' and sCode = 'B004'
Note:
- The query returns ID of the last modification of the object.
SSMS query limits results to max 8k characters. The XML extraction has to be done with other methods. I used SSMS UI, data export wizard with following query:
select newXML from BPAAuditEvents where eventid = 12345
Note:
- 12345 has to be replaced by the actual eventid that was result of the first query
- when exporting some options have to be taken into account like no row headers and unicode
My next step was to rename the export file to MyObjectName.xml and to import into Blue Prism without any other modification.
🙂------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------