Re: Upgrading a user to an new userWorkflow definition

2023-10-06 Thread Francesco Chicchiriccò
Hi Lionel, glad to read that you did solve. Regards. On 05/10/23 17:47, Lionel SCHWARZ wrote: OK that was tricky but I finally found out that: - I have to update table ACT_RU_ACTINST as well - the UPDATE ACT_RU_EXECUTION is actually: UPDATE ACT_RU_EXECUTION SET PROC_DEF_ID_ = 'userWorkflow:X:XX

Re: Upgrading a user to an new userWorkflow definition

2023-10-05 Thread Lionel SCHWARZ
OK that was tricky but I finally found out that: - I have to update table ACT_RU_ACTINST as well - the UPDATE ACT_RU_EXECUTION is actually: UPDATE ACT_RU_EXECUTION SET PROC_DEF_ID_ = 'userWorkflow:X:' WHERE PROC_INST_ID_ = ; It seems to work like this Sorry for the noise, best regards Lionel

Upgrading a user to an new userWorkflow definition

2023-10-05 Thread Lionel SCHWARZ
Dear all, After deploying a new userWorkflow definition (PUT /flowable/bpmnProcesses/userWorkflow), I tried to upgrade a user to this new workflow, executing the following steps: - stop Syncope - connect to DB - get the definition id of the new workflow: SELECT ID_ FROM ACT_RE_PROCDEF WHERE KEY