How would a SQL select statement look like, that returns all Cases that run in a specific Process Model Version?

asked 11.05.2016 at 10:43

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122
accept rate: 77%


You could do that with following query:

SELECT * from IWA_Case c 
INNER JOIN IWA_TaskStart ts
ON c.TaskStartId = ts.TaskStartId
INNER JOIN IWA_TaskElement te
ON ts.TaskElementId = te.TaskElementId
WHERE te.ProcessModelVersionId = '<my process model version id>'
link

answered 11.05.2016 at 10:46

Dominik%20Regli's gravatar image

Dominik Regli ♦
(suspended)
accept rate: 85%

edited 11.05.2016 at 10:46

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×18
×14
×3
×2

Asked: 11.05.2016 at 10:43

Seen: 1,954 times

Last updated: 11.05.2016 at 10:46