cancel
Showing results for 
Search instead for 
Did you mean: 

Information stored in Database - Where?!

warchild
Champ in-the-making
Champ in-the-making
Hello again dear developers,

I've had a lot of fun playing around with activiti recently. Ok in the last weeks to be honest. But a few things are a complete mystery which might be down to the fact that I am not a Java developer. But I'm learning Smiley Happy

I'm struggling to find the information in the database which can be found in the exported .XML BPMN 2.0 Docs for example the shape ID's (I am working with User tasks now) or name (Text in the Task) or candidate users (activiti:candidateUsers) if I have configured this in my Task. I learned that all data this type must be stored in tables named with "HI" for historical data. But I can't find it…

I'm pretty sure someone knows where this data is stored. Anyone can help?

Greetings from Berlin
1 REPLY 1

warchild
Champ in-the-making
Champ in-the-making
Ok I just found out something by myself…

Information is stored via RepositoryService in the byteArray.

This part looks suitable for me:
ProcessDefinition  getProcessDefinition(String processDefinitionId)
Returns the ProcessDefinition including all BPMN information like additional Properties (e.g.

Because all I need is the information stored in the Tasks including the activiti: related stuff. Is there a topic for this? Or any suggestions how to do this with moderate changes?