For Forecast Validation
-----------------------
Produce a CA-ESP Forecast report to be used for the validation by running CA-ESP utility ???  
and then:

LSAR DSNAME('Z90014.SADFILE.DAY') TIMESEQ


For Execution Validation
------------------------
To produce a CA-ESP Execution report, use the JCL sample below as follows:
- Substitute both occurences of mmm dd yyyy with the values for the start and end dates 
  that the report should include e.g. FROM 06:00 NOV 10 2015 TO 05:59 NOV 11 2015 
  For a single day, specify the same date for both values.
- Substitute the occurences of 'hist1.dataset','hist2.dataset' with names of the HIST1 and HIST2 
  datasets, if applicable
- Substitute appl1, appl2, applx,...., etc. with APPL prefixes, to select specific Applications, 
  if applicable, or remove the line
  
  
run the following JCL and use the output produced on the SYSPRINT:
//ESPRPT EXEC PGM=ESP
//SYSPRINT DD  SYSOUT=*
//SYSIN    DD  *
REPORT
SETWIDTH 80
HISTFILE (HIST1 HIST2)         <=== Increases history viewed, optional
INPUT DATASET('hist1.dataset') <=== Increases history viewed, optional
INPUT DATASET('hist2.dataset') <=== Increases history viewed, optional
DATEFORM YMD
FROM 06:00 mmm dd yyyy TO 05:59 mmm dd yyyy                             
CRITERIA APPL EQ 'appl1-' OR APPL EQ 'appl2-' OR APPL EQ 'applx-' <== optional
DISPLAY APPL, JOBNAME, JOBQUAL, EXECSDATE, EXECST, MXRC, -
    CCFAIL, CMPC, ENDDATE, ENDT
SORT APPL APPLGEN JOBNAME JOBQUAL ENDT
SORT GROUP JOBNAME JOBQUAL EXECSDATE EXECST
ENDR
//
