2.2.5.33 StagingBatchStatus

The StagingBatchStatus simple type specifies the processing status of a staging (import) batch.

The following is the XML schema definition of the StagingBatchStatus simple type.

Applies to MDS 2008R2

   <xs:simpleType name="StagingBatchStatus">
     <xs:restriction base="xs:string">
       <xs:enumeration value="All" />
       <xs:enumeration value="QueuedToRun" />
       <xs:enumeration value="NotRunning" />
       <xs:enumeration value="Running" />
       <xs:enumeration value="QueuedToClear" />
       <xs:enumeration value="Cleared" />
       <xs:enumeration value="AllExceptCleared" />
     </xs:restriction>
   </xs:simpleType>

Applies to MDS 2012

   <xs:simpleType name="StagingBatchStatus">
     <xs:restriction base="xs:string">
       <xs:enumeration value="All" />
       <xs:enumeration value="QueuedToRun" />
       <xs:enumeration value="NotRunning" />
       <xs:enumeration value="Running" />
       <xs:enumeration value="QueuedToClear" />
       <xs:enumeration value="Cleared" />
       <xs:enumeration value="AllExceptCleared" />
       <xs:enumeration value="Completed" />
     </xs:restriction>
   </xs:simpleType>

The values of the enumeration are described in the following table.

Value

Meaning

All

This value indicates all statuses.

QueuedToRun

The batch is queued for processing.

NotRunning

The batch is not running and is not queued for processing.

Running

The batch is being processed.

QueuedToClear

The batch is queued for deletion of the records.

Cleared

The records in the batch have been deleted.

AllExceptCleared

This value indicates all statuses except for the Cleared status.

Completed

The batch is finished being processed. (MDS 2012 only)