AddJob
Use this action service to add multi-step job.
Required Parameters
Parameter Key | Value Type | Parameter Description |
---|---|---|
jobOwner | Alphanumeric string |
The owner of the job in the appropriate format. For example, in Windows, the format might be: Maximum length for strings is 10. |
jobName | Alphanumeric string | The job name. Maximum length for strings is 10. |
jobType | Alphanumeric string | The job type. Values are singlestep or multistep. |
Optional Parameters
Parameter Key | Value Type | Parameter Description |
---|---|---|
jobDescription | Alphanumeric string | The job description. Maximum length for strings is 30. |
nextStepKey | Integer |
Next job step key. This is automatically populated. Default value is the total number of job steps. Default value is 1. |
workFilePath | Alphanumeric string |
The path where workfile is located. Maximum length for strings is 60. |
XML request format:
<ACTION> <JOB jobOwner="XXX" jobName="XXX" jobDescription="XXX" jobType="XXX" nextStepKey="XXX" workFilePath="XXX" >
<JOBSTEP jobOwner="XXX" jobName="XXX" token="XXX" jobStepDescription="XXX" jobStepKey="N" jobStepNumber="N" jobStepType="XXX" productLine="XXX" dataArea="XXX" jobStepParameters="XXX" workFilePath="XXX" jobStepTranSize="N" intRptServer="N" hasParameters="XXX" hasCVSAttributes="XXX"/>
</JOB>
</ACTION>