Creating a short Accounting report

Use your ISPF editor to create a JCL job that creates a short Accounting report.

The following JCL is an example. Remember to change the setup information (starting with // in your JCL) as appropriate for your installation.
Figure 1. Specifying a job stream using ISPF/PDF editor

EDIT ---- ANDREW.OMPE.JOBS.ACREPSHO------------------------- Columns 001 072
Command ===> ________________________________________________ Scroll ===> CSR_
****** ***************************** TOP OF DATA ******************************
0001  /*  JCL to produce an accounting short report  */
0002  //AWOMPEA JOB  (TTS1,YUS7),'ANDREW', 
0003  //             MSGCLASS=V,CLASS=D,NOTIFY=ANDREW
0004  //        EXEC PGM=FPECMAIN
0005  //STEPLIB  DD  DSN=OMPE.RKANMOD,DISP=SHR
0006  //INPUTDD  DD  DSN=ANDREW.OMPE.TRACES.TRACE2,DISP=SHR
0007  //DPMOUTDD DD  DSN=ANDREW.OMPE.OUT.ACRPT01,DISP=OVR
0008  //JOBSUMDD DD  SYSOUT=A 
0009  //SYSIN    DD  *  
0010  ACCOUNTING
0011      REPORT
0012          TOP(20)
0013  EXEC
****** **************************** BOTTOM OF DATA ****************************
 F1=Help     F2=Split    F3=Exit     F5=Rfind    F6=Rchange  F7=Up
 F8=Down     F9=Swap    F10=Left    F11=Right   F12=Cancel

To submit the job, type SUBMIT on the command line and press Enter.