ChangeFullJob
Changes the job including all of its job steps and job step reports
URL (general format)
SERVER:PORT/lawson-ios/action/ChangeFullJob? <parameter=key>
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. | 
Optional Parameters
| Parameter Key | Value Type | Parameter Description | 
|---|---|---|
| jobDescription | Alphanumeric string | The job description. Maximum length for strings is 30. | 
| jobType | Alphanumeric string | The job type. Values are singlestep or multistep. | 
| nextStepKey | Integer | 
               Next job step key. This parameter is automatically populated. The default value is the total number of job steps. If not specified, the default value is 1.  | 
            
| workFilePath | Alphanumeric string | Path where workfile is located. Maximum length for strings is 60. | 
Example URL
SERVER:PORT/lawson-ios/action/ChangeFullJob?jobOwner=LAWSON\lawsonuser&jobName=TESTJOB
Additional Information
To update multiple jobs in one call, use POST method, XML content.
SERVER:PORT/lawson-ios/action/ChangeFullJob
Post body:
<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>