Hello,
Be sure to choose subcategory "CA Workload Automation ESP Edition" in the future. Otherwise other ESP users won't see it.
I think use SCHED on event level is the easiest, following will run every 2 hours:
EVENT ID(TEST.INFORMATICA_JOB)
SCHED 08.00 EVERY 2 HOURs
....
ENDDEF
To use TEMPLATE, you can refer to example "Scheduling an hourly job within a time range" on "Examples Cookbook", I copied partial of the information here for you:
Scheduling an hourly job within a time range
Objective
Schedule a job to run every hour from 8 AM to 4 PM on workdays. The job belongs to an Application containing many different jobs with different frequencies.
Solution
One solution is to use a template within your Application definition.
Take the following steps:
1. Use a template in your Application to define multiple instances of the job. For example:
APPL CYBER
JCLLIB 'CYBER.JCLLIB' TEMPLATE HOURLY (1,OFFSET)
JOB A.%OFFSET
RUN WORKDAYS
DELAYSUB 8AM PLUS %OFFSET HOURS
ENDJOB
ENDTEMPL
HOURLY 0
HOURLY 1
HOURLY 2
HOURLY 3
HOURLY 4
HOURLY 5
HOURLY 6
HOURLY 7
HOURLY 8
2. Schedule an Event prior to 8 AM that invokes this Application.
Hope this helps,
Lucy