Hi Team,
I need assigned date for particular task but In OOTB Camunda tables, I cant see any assigned date in runtime & history tables.
How can I get it please help here.
Hi Team,
I need assigned date for particular task but In OOTB Camunda tables, I cant see any assigned date in runtime & history tables.
How can I get it please help here.
We did this in the past by having a global task-assignment listener (checkout camunda-reactor or the spring boot eventListeners for global listeners) that is called every time a task is (un)assigned. There you have access to the task context and can store the information whereever required.
Hi @sunilkaushik,
in the latest version these dates are stored in ACT_HI_OP_LOG. Have a look at the docs for further details: https://docs.camunda.org/manual/7.11/user-guide/process-engine/history/#user-operation-log
Hope this helps, Ingo
Thanks for your reply and after enabling history level ALL, user activity is being logged in ACT_HI_OP_LOG table which is useful for me.