Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Finally start again the Java EE container and watch the log files to check for any error.

User workflow definition

The user workflow must be updated: in the XML definition, replace any occurrence like as follows:

...

Code Block
flowable:delegateExpression="${create}"

Once the updated definition is set, stop the Java EE container and verify the actual version on the internal storage:

Code Block
languagesql
SELECT ID_ FROM ACT_RE_PROCDEF ORDER BY VERSION_ DESC LIMIT 1

Supposing that the statement above returns userWorkflow:2:12504, execute the following SQL statements:

Code Block
languagesql
UPDATE ACT_RU_EXECUTION SET PROC_DEF_ID_ = 'userWorkflow:2:12504' WHERE ID_ IS NOT NULL;
UPDATE ACT_RU_TASK SET PROC_DEF_ID_ = 'userWorkflow:2:12504' WHERE ID_ IS NOT NULL;

Finally start again the Java EE container and watch the log files to check for any error.