ObjectState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An enumeration of possible values for object state.
public enum ObjectState
type ObjectState =
Public Enum ObjectState
- Inheritance
-
ObjectState
Fields
Name | Value | Description |
---|---|---|
Ready | 1 | Object is refreshed, contains up-to-date data, and is queryable. |
NoData | 3 | Object is queryable but contains no data. Refresh it to bring in data. Applies to non-calculated objects, such as DataColumns, partitions, and Tables. |
CalculationNeeded | 4 | Object is not queryable and contains no data. It needs to be refreshed to become functional. Applies only to calculated objects, such as calculated columns, hierarchies, and calculated tables. |
SemanticError | 5 | Object is in an error state because of an invalid expression. It is not queryable. |
EvaluationError | 6 | Object is in an error state because an error occurred during expression evaluation. It is not queryable. |
DependencyError | 7 | Object is in an error state because some of its calculation dependencies are in an error state. It is not queryable. |
Incomplete | 8 | Some parts of the object have no data. Refresh the object to add the rest of the data. The object is queryable. Applies to non-calculated objects, such as DataColumns, partitions, and tables. |
ForceCalculationNeeded | 10 | The data is possibly outdated, but is in a queryable state. Applies only for CalculatedTable. |