task_status() values

I can't seem to find what the different task statuses mean in the appian documentation. For example, what does the number 4 mean? I know as a matter of fact that 7 means cancelled but can't seem to find the other ones.

OriginalPostID-244855

  Discussion posts and replies are publicly visible

Parents
  • I'm not familiar with task_status() 14 either. You might have success formatting a portal report with a column defined as type "Task Status", definition: =task_status(). This should format the result into text format of the status. Otherwise for reference:

    task_status() will be defined as below, note this data starts with index 0:

    Assigned=0
    Accepted=1
    Completed=2
    Not Started=3
    Cancelled=4
    Paused=5
    Unattended=6
    Aborted=7
    Cancelled By Exception=8
    Submitted=9
    Running=10
    Error=11

    For process_status(), these should be your 4 different types:

    active=0
    completed=1
    paused=2
    cancelled=3
    paused by exception=4
Reply
  • I'm not familiar with task_status() 14 either. You might have success formatting a portal report with a column defined as type "Task Status", definition: =task_status(). This should format the result into text format of the status. Otherwise for reference:

    task_status() will be defined as below, note this data starts with index 0:

    Assigned=0
    Accepted=1
    Completed=2
    Not Started=3
    Cancelled=4
    Paused=5
    Unattended=6
    Aborted=7
    Cancelled By Exception=8
    Submitted=9
    Running=10
    Error=11

    For process_status(), these should be your 4 different types:

    active=0
    completed=1
    paused=2
    cancelled=3
    paused by exception=4
Children
No Data