Scheduling Periodic Job has one limitation , We can not schedule the job for a particular time frame .
Lets Say if you want to schedule the job every one minute for one week only .In order to achieve this , we have to schedule the periodic job which will run every one minute and then after one week we need to manually delete the job.
So In order to overcome this limitation i have written simple report which will schedule the periodic job for a given time frame.
This report will schedule two jobs , one to run the report periodically and other job to delete the first job after the given time frame.
Start Date and Start Time( Low) implies the start time for the first job ,similarly Start Date and Start Time( High) implies the start time for the second job which will delete the first job.You can also specify the Day on which job should be scheduled.
You can also specify the Job Prefix name , first job will be created with the name of the Prefix followed by '_JOB' followed by the timestamp and second job will have '_DEL' and the timestamp.
Period in Mnts is for the first job to specify how often it should be run.
Attached Document has the source code for the report.