Hi all,
I`m new to activiti.
I have a simple business process which is integrated and executed by my own application.
I try to view active and already executed (finished) process instances via the activiti explorer.
Of course the avtiviti explorer and also my own application point to the same database.
I`m able to view running process instances via the a administration tab in the activity explorer. I see at which task the process is waiting for user input at the moment and also all the process vars with its values.
I'm also able to view completed process instances and who did which task in the process but no process variables.
Its very interesting which values for example the person who claimed the task added to the process.
In my own application I add process variables with code like this.
{code}
Map<String, Object> processValues = new HashMap<String, Object>();
processValues.put("accepted", "true");
….
taskService.complete(task.getId(), processValues);
….
{code}
I dont understand why they are shown in running but not in completed process instances in activiti explorer.
Any idea?
Best regards,
Markus