ExportTaskDetails
Retrieves detailed status for a specific export task, including progress, result, and failure information.
Table-Specific Information
Select
The server uses the Anaplan API to process WHERE clause conditions that are built with the following columns and operators:
- TaskId supports the '=' comparison operator.
- ExportId supports the '=' comparison operator.
- ModelId supports the '=' comparison operator.
- WorkspaceId supports the '=' comparison operator.
For example, the following queries are processed server-side:
SELECT * FROM [ExportTaskDetails] WHERE [TaskId] = '123' AND [ExportId] = '456' AND [ModelId] = '789' AND [WorkspaceId] = '101'
The server processes other filters client-side within the server.
Columns
| Name | Type | References | Description |
| TaskId [KEY] | String |
ExportTasks.Id | The unique identifier of the task. |
| ExportId | String |
Exports.Id | The ID of the export definition. |
| ModelId | String |
Models.Id | The ID of the model. |
| WorkspaceId | String |
Workspaces.Id | The ID of the workspace. |
| State | String | The current state of the task. | |
| CreationTime | Datetime | Timestamp when the task was created. | |
| CurrentStep | String | Description of the current step. | |
| Progress | Double | Progress indicator. | |
| Successful | Bool | Whether the task completed successfully. | |
| FailureDumpAvailable | Bool | Whether a failure dump file is available. | |
| ObjectId | String | The object ID associated with the result. |