You are here:
Configuring Values for Status and Order Status Fields
When you create an order and submit it to Order Management for processing, the status of the order is changed to "In Progress". When you create a subsequent order on the same asset while the first order is still in progress, the changes made in the first order are stacked into the second order. For example, if the subsequent order is scheduled and submitted after the original order is completed, it can include the changes from the order in progress. This is achieved through a flexible FDO check so that additional Order Status values are considered when looking for FDOs.
In Asset to Order FDO MACD flow, Order's Status and OrderStatus__c fields query for a previously created MACD order. The query uses the following values:
Field |
Values in Query |
|---|---|
Status |
Draft |
OrderStatus__c |
Ready To Submit,Queued |
The FDOStatuses setting lets you configure the possible list of values for Status and OrderStatus__c fields.
The value for the status FDOStatuses is a semicolon-separated list of fields and their corresponding values:
<FieldAndValue>;<FieldAndValue>
To specify only one FieldAndValue, you need not use a semi-colon. Each FieldAndValue is an expression in this format:
<Field>=<Comma-separated-values>
The following table lists FDOStatus values for various use cases.
Example |
Value for FDOStatuses |
|---|---|
To add Active to the list of values for an order's Status field and leave the values for OrderStatus__c unchanged |
Status=Draft,Active |
To add In Progress to the list of values for Order's OrderStatus__c field and leave the values for Status unchanged |
OrderStatus__c=Ready to Submit,Queued,In Progress. Specify all values, including the default value, because the setting completely overrides the default value. To add a new OrderStatus__c value, specify the default values in addition to the new value. |
To add Active to Status and add In Progress to the OrderStatus__c field |
Status=Draft,Active;OrderStatus__c=Ready to Submit,Queued,In Progress |
To use default behavior |
Do not configure the property. |
In CME, the CPQ Order Status field (API Name: vlocity_cmt__OrderStatus__c) includes values such as Ready To Submit, In Progress, Activated, Cancel Requested, Cancelled, Completed and so on. See Order Statuses in CPQ.
The OM Fulfilment Status field (API Name: vlocity_cmt__FulfilmentStatus__c) includes values such as Draft, In Progress, Activated, and so on.
DO NOT customize the Order Status or Fulfilment Status fields to extend the picklist values for your custom project values. Instead, create a custom field with the required milestones as picklist values. See

