ObjectState Enum

Definition

An enumeration of possible values for object state.

public enum ObjectState
type ObjectState = 
Public Enum ObjectState
Inheritance
ObjectState

Fields

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.

DependencyError 7

Object is in an error state because some of its calculation dependencies are in an error state. It is not queryable.

EvaluationError 6

Object is in an error state because an error occurred during expression evaluation. It is not queryable.

ForceCalculationNeeded 10

The data is possibly outdated, but is in a queryable state. Applies only for CalculatedTable.

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.

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.

Ready 1

Object is refreshed, contains up-to-date data, and is queryable.

SemanticError 5

Object is in an error state because of an invalid expression. It is not queryable.

Applies to