Download process report

Hi we have camunda enterprise edition. Is there any way we can download the history report of processes from camunda in csv or excel form?

Hi @hello.aliasad,

In case you have an enterprise license, I recommend you to create a Support ticket.
Otherwise, please explain in more detail what are you trying to achieve.

Best,
Yana

1 Like

Thanks Yana for replying. We wanted to download the report of all process instances. For example, what time a process started, what option did the user select manually. Is there a way we could download the reports in csv form?

Hi @hello.aliasad,

The Rest API (Java API as well) offers the following reports (responses are application/json):

Further historic data can be fetch from the database. Database schema: Database Schema | docs.camunda.org

  • process instance start time - table ACT_HI_PROCINST, column START_TIME_
  • what option did the user select manually - I am assuming that you are referring to process variables, they are stored in ACT_HI_VARINST table.

I hope that helps.

Best,
Yana

1 Like