Updating a job schedule
To change a property of a job schedule, use UpdateJobSchedule and change SetAttributes, SetParameters, SetSchedules, or another element of the operation. The following request changes the run frequency, the job priority, and the run time. Because this job is a transaction, each element of the update must succeed for the update to succeed.
<SOAP-ENV:Body>
<Administrate>
<AdminOperation>
<Transaction>
<TransactionOperation>
<UpdateJobSchedule>
<UpdateJobScheduleOperationGroup>
<UpdateJobScheduleOperation>
<SetAttributes>
<RunLatestVersion>true
</RunLatestVersion>
<InputFileName>
/National Data
/Nationalforecast.rptdesign
</InputFileName>
<Priority>800</Priority>
</SetAttributes>
<SetParameters>
<RetryOption>VolumeDefault</RetryOption>
</SetParameters>
<SetSchedules>
<TimeZoneName>PST</TimeZoneName>
<ScheduleDetails>
<JobScheduleDetail>
<ScheduleType>Daily</ScheduleType>
<Daily>
<FrequencyInDays>1
</FrequencyInDays>
<OnceADay>07:00:00</OnceADay>
</Daily>
</JobScheduleDetail>
</ScheduleDetails>
</SetSchedules>
</UpdateJobScheduleOperation>
</UpdateJobScheduleOperationGroup>
<Id>1</Id>
</UpdateJobSchedule>
</TransactionOperation>
</Transaction>
</AdminOperation>
</Administrate>
</SOAP-ENV:Body>