Qorus Integration Engine®  4.0.3.p2_git
Java Workflow, Segment, and Step Status Descriptions

Variables

static final String com.qoretechnologies.qorus.OMQ.StatComplete = "COMPLETE"
 This status indicates that the object it is attached to has successfully completed its processing. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatError = "ERROR"
 Indicates that the workflow order data instance has at least one step with an OMQ.StatError status. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatWaiting = "WAITING"
 Indicates that subworkflow steps are in progress and the system is waiting on the subworkflows to become OMQ.StatComplete. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatInProgress = "IN-PROGRESS"
 Indicates that the workflow order data instance is currently being processed. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatIncomplete = "INCOMPLETE"
 Indicates that processing for the workflow order data instance is not yet complete yet has no errors. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatAsyncWaiting = "ASYNC-WAITING"
 Indicates that asynchronous steps are in process and the system is waiting on data to become available in the queue assigned to the step. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatEventWaiting = "EVENT-WAITING"
 Indicates that one or more workflow event synchronization steps are in progress and the workflow is waiting for the event(s) to be posted. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatRetry = "RETRY"
 Indicates that workflow processing on the order data instance has generated an error and is now waiting for an automatic retry. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatCanceled = "CANCELED"
 Indicates that workflow order data instance processing has been canceled. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatReady = "READY"
 Indicates that a workflow order data instance has been created and is waiting for processing to start. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatScheduled = "SCHEDULED"
 Indicates that a workflow order data instance has been created and has not yet been processed because at the time the order was created, the scheduled date (the earliest possible processing date) was in the future. More...
 
static final String com.qoretechnologies.qorus.OMQ.StatBlocked = "BLOCKED"
 Indicates that workflow order data instance processing has been temporarily blocked. More...
 

Detailed Description

These are the possible values for the descriptive status of a workflow order data instance; most of these can also be used for the status of a segment instance and a step instance.

Note
Descriptive status values are returned by almost all API functions even though abbreviated codes are actually stored in th e database; this is mainly for backwards compatibility.
See also

Variable Documentation

◆ StatAsyncWaiting

final String com.qoretechnologies.qorus.OMQ.StatAsyncWaiting = "ASYNC-WAITING"
static

Indicates that asynchronous steps are in process and the system is waiting on data to become available in the queue assigned to the step.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatAsyncWaiting

◆ StatBlocked

final String com.qoretechnologies.qorus.OMQ.StatBlocked = "BLOCKED"
static

Indicates that workflow order data instance processing has been temporarily blocked.

This status is similar to OMQ.StatCanceled but is considered only temporary.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatBlocked

◆ StatCanceled

final String com.qoretechnologies.qorus.OMQ.StatCanceled = "CANCELED"
static

Indicates that workflow order data instance processing has been canceled.

This status is similar to OMQ.StatBlocked but is considered a final status.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatCanceled

◆ StatComplete

final String com.qoretechnologies.qorus.OMQ.StatComplete = "COMPLETE"
static

This status indicates that the object it is attached to has successfully completed its processing.

This is a final status; once a workflow, segment, or step is COMPLETE, it will not be processed anymore.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatComplete

◆ StatError

final String com.qoretechnologies.qorus.OMQ.StatError = "ERROR"
static

Indicates that the workflow order data instance has at least one step with an OMQ.StatError status.

This status takes the highest priority; if any one step in a workflow has an OMQ.StatError status, then the entire workflow will also have an OMQ.StatError status. Workflow order data instances must be manually updated to OMQ.StatRetry when an OMQ.StatError status is reached.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatError

◆ StatEventWaiting

final String com.qoretechnologies.qorus.OMQ.StatEventWaiting = "EVENT-WAITING"
static

Indicates that one or more workflow event synchronization steps are in progress and the workflow is waiting for the event(s) to be posted.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatEventWaiting

◆ StatIncomplete

final String com.qoretechnologies.qorus.OMQ.StatIncomplete = "INCOMPLETE"
static

Indicates that processing for the workflow order data instance is not yet complete yet has no errors.

This status will be assigned after asynchronous segments have completed and dependent segments have not yet been started.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatIncomplete

◆ StatInProgress

final String com.qoretechnologies.qorus.OMQ.StatInProgress = "IN-PROGRESS"
static

Indicates that the workflow order data instance is currently being processed.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatInProgress

◆ StatReady

final String com.qoretechnologies.qorus.OMQ.StatReady = "READY"
static

Indicates that a workflow order data instance has been created and is waiting for processing to start.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatReady

◆ StatRetry

final String com.qoretechnologies.qorus.OMQ.StatRetry = "RETRY"
static

Indicates that workflow processing on the order data instance has generated an error and is now waiting for an automatic retry.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatRetry

◆ StatScheduled

final String com.qoretechnologies.qorus.OMQ.StatScheduled = "SCHEDULED"
static

Indicates that a workflow order data instance has been created and has not yet been processed because at the time the order was created, the scheduled date (the earliest possible processing date) was in the future.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatScheduled

◆ StatWaiting

final String com.qoretechnologies.qorus.OMQ.StatWaiting = "WAITING"
static

Indicates that subworkflow steps are in progress and the system is waiting on the subworkflows to become OMQ.StatComplete.

Note
The equivalent status code actually stored in the database is OMQ.SQLStatWaiting