AI-generated Key Takeaways
-
The
DataExecutionStatusobject provides information about the status of a data execution. -
It includes methods to retrieve the error code, error message, execution state, last execution time, and last refreshed time.
-
You can also check if the data from the last successful execution was truncated using the
isTruncated()method.
The data execution status.
Methods
| Method | Return type | Brief description |
|---|---|---|
Data
|
Gets the error code of the data execution. | |
String
|
Gets the error message of the data execution. | |
Data
|
Gets the state of the data execution. | |
Date
|
Gets the time the last data execution completed regardless of the execution state. | |
Date
|
Gets the time the data last successfully refreshed. | |
Boolean
|
Returns true
if the data from last successful execution is truncated, or false
otherwise. |
Detailed documentation
get
Error
Code()
get
Error
Message()
Gets the error message of the data execution. The message may be empty.
Return
String
— The error message.
get
Execution
State()
get
Last
Execution
Time()
Gets the time the last data execution completed regardless of the execution state.
Return
Date
— The last execution time, or null
if there has never been a data execution.
get
Last
Refreshed
Time()
Gets the time the data last successfully refreshed.
Return
Date
— The last successfully refreshed time, or null
if there is never a successful
data execution.
is
Truncated()
Returns true
if the data from last successful execution is truncated, or false
otherwise.
Return
Boolean
— True
if the data from execution is truncated, or false
otherwise.

