In my database I've tasks state starting with number 1 to 7, maybe more but 7 is the highest state I've.

In the documentation of Axon Ivy I cannot find any information about the task state and their meaning. I just found some workflow task information but they seem not related with the Axon Ivy task state. Or m I wrong?

Because in the documentation they reefer to some state like Done, Resumed, ... : https://developer.axonivy.com/doc/latest/DesignerGuideHtml/ivy.concepts.html#ivy-wf-states

But nothing about numbers, and I know in old Axon Ivy Version there was state like destroyed for example who are not listed in this documentation.

So where can I find a good documentation about the task states in Axon Ivy Engine/Designer ???

And what are those task state who are documented into the chapter referenced? Is there two type of task now?

Thanks a lot for the help, Neo

asked 02.10.2018 at 03:34

AxonIvyDeveloper's gravatar image

AxonIvyDevel...
(suspended)
accept rate: 0%


Hi Neo

There are only one task types and the states documented in the user document are the most common task states.

The number you find in the column State in the table IWA_Task can be found on the enum ch.ivyteam.ivy.workflow.TaskState. In the Axon.ivy Designer use CTRL - T and type TaskState to open the source of TaskState.

On the API you can get the state of a task with ch.ivyteam.ivy.workflow.ITask#getState(). On the TaskQuery you can filter by the state of a task with:

TaskQuery.create().where().state().isEqual(TaskState.SUSPENDED);

More information can be found here: Axon.ivy PublicAPI

Regards

Reto Weiss, Axon.ivy Support

link

answered 02.10.2018 at 03:56

Reto%20Weiss's gravatar image

Reto Weiss ♦♦
4.9k202857
accept rate: 74%

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:

×68

Asked: 02.10.2018 at 03:34

Seen: 1,631 times

Last updated: 02.10.2018 at 03:56