Skip to main content
Version: Current

Get Job Status

Description

This activity returns the current status information of the RPA job.

Using Process Data

You can dynamically configure activity properties by using variables from the Process Data drawer. This drawer is available in each activity's properties dialog. It provides access to variables from multiple sources within the workflow.

Process Data Categories

OptionsDescription
Model DataProcess-specific data variables that you define for your workflow.
Form DataVariables from forms associated with this process.
System DataPredefined system variables (e.g., Process Initiator, Activity Name, Task ID).
Enterprise VariablesEnterprise variables created inside the AI Command Center.
Activities OutputsOutput variables from other activities in your workflow.

Using Variables in Activity Properties

To use a variable:

  • Drag and drop it from the Process Data drawer into any activity property that supports variable binding.
  • Properties that support variable binding display a vertical ellipsis (⋮) icon.

You can also reference Process Data variables within JavaScript or Liquid expressions for advanced configurations.

For more information, see Process Data Drawer.

Design Time Configuration

Display Text

Specify the activity name that shows in your process.

Job Id

Specify the job Id of the RPA process you want to check the status of. Click on the vertical ellipse to choose the following options.

OptionsDescription
DefaultWhen you select this option, you can specify the Job Id directly.
JavascriptYou can specify the Job Id using the javascript expression.
LiquidYou can specify the Job Id using a liquid expression.

Status

Returns the status of the specified job Id

On Error

All activities support the common On Error handler to control behavior on failures (Fault, Continue, Suspend, Retry). See On Error Handler.

Wait All Incoming

The Wait All Incoming property defines how an activity behaves when it has multiple incoming execution paths. It controls whether the activity is triggered as soon as a path completes or whether the workflow engine must wait for multiple paths to complete before executing the activity.

OptionsDescription
FalseThe activity is triggered whenever any incoming path completes. Each incoming completion can trigger a separate execution of the activity.
All Configured IncomingThe activity executes only after all design-time (configured) incoming paths have completed. If a path is skipped at runtime due to conditional logic, the activity may wait indefinitely.
All Active IncomingThe activity executes only after all runtime-active incoming paths have completed. Incoming paths that are not taken due to conditions are automatically ignored, preventing indefinite waiting and ensuring predictable execution.