For the complete documentation index, see llms.txt. This page is also available as Markdown.

GetEssJobStatus

Frends task to check and optionally wait for completion of an Oracle Fusion ESS job.

Task version: 1.0.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

RequestId : String

The Request ID returned by the SubmitEssJob task.

Default: - Example: 12345678

Task Result

Name
Description

Success : Boolean

Indicates if the task completed successfully. Example: true

IsCompleted : Boolean

Indicates whether the job has reached a terminal state (SUCCEEDED, FAILED, WARNING, CANCELLED, ERROR). When false, the job is still running or queued. Use RequestId to check again later. Example: true

RequestId : String

ESS job request ID. Example: 12345

JobStatus : String

Final job status (SUCCEEDED, FAILED, WARNING, CANCELLED, ERROR, etc.). Example: SUCCEEDED

StatusCheckedAt : Nullable<DateTime>

The UTC timestamp of when this status check was performed. Example: 06/30/2024 10:24:07

LogFileContent : String

Base64 encoded log file content (if requested and available). Example: UEsDBBQACAgIADdT4VAAAAAA...

OutputFileContent : String

Base64 encoded output file content (if requested and available). Example: UEsDBBQACAgIADdT4VAAAAAA...

OutputFiles : List<ExtractedFile>

List of files extracted from the ESS job output ZIP archive. Populated when IncludeLogFile or IncludeOutputFile is enabled and the job has completed. Example: [{ "FileName": "report.csv", "Content": "col1,col2\nval1,val2" }]

Error : Error

Error that occurred during task execution. Example: object { string Message, Exception AdditionalInfo }

Task Changelog

Changelog for Task Frends.OracleFusion.GetEssJobStatus.

[1.0.0] - 2026-03-10

Added

  • Initial implementation

Last updated

Was this helpful?