Operation: Jobs Information
The Operation Jobs Information
displays information about scheduled processes from all Schedule files in the X4 repository.
Example
Output
The adapter generates an XML document as output.
Note
The format for date and time depends on the date and time format in the system.
Possible formats:
- DD.MM.YY, hh:mm
- MM/DD/YY, hh:mm AM/PM
Output in the format DD.MM.YY, hh:mm:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JobInformation>
<Job>
<Id>5d6d4a9d-1815-426f-bf2c-fdb846d211e6</Id>
<Name>ScheduledProcess</Name>
<Process>Processes/MyProcess.wrf</Process>
<Active>true</Active>
<JobsExecuted>4</JobsExecuted>
<StartTime>25.04.22, 12:30</StartTime>
<PreviousTime>26.04.22, 12:30</PreviousTime>
<NextTime>27.04.22, 12:30</NextTime>
</Job>
</JobInformation>
Output in the format MM/DD/YY, hh:mm AM/PM:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<JobInformation>
<Job>
<Id>5d6d4a9d-1815-426f-bf2c-fdb846d211e6</Id>
<Name>ScheduledProcess</Name>
<Process>Processes/MyProcess.wrf</Process>
<Active>true</Active>
<JobsExecuted>4</JobsExecuted>
<StartTime>4/25/22, 10:30 AM</StartTime>
<PreviousTime>4/26/22, 10:30 AM</PreviousTime>
<NextTime>4/27/22, 10:30 AM</NextTime>
</Job>
</JobInformation>
The following elements can be included in the output:
Element | Description | Possible values |
---|---|---|
Id | UUID of the execution |
|
Name | Name of the execution |
|
Process | Path to the process to be executed |
|
Active | Execution status |
|
JobsExecuted | Number of previous executions |
|
StartTime | Execution start date |
|
PreviousTime | Date of last execution |
|
NextTime | Date of the next execution |
|
EndTime | Execution end date |
|