Start of change

The DWWRUNBL job

The DWWRUNBL job updates the sample VSAM cluster created by the DWWVRDEF IVP job.

Before running the DWWRUNBL job, enter this command D SMS,CICSVR to ensure that the CICS VR server address space is activated successfully. The output from the D,SMS,CICSVR command is similar to this:
DWW020I DISPLAY SMS,CICSVR                                              
DISPLAY SMS,CICSVR - SERVER STATUS                                      
  SYSNAME:  MVV2       AVAILABLE ASID: 001E STEP: CICSVR_Init_Complete  
                                                                        
DISPLAY SMS,CICSVR - JOB STATUS                                         
  APPLID AND NUMBER OF JOBS USING BATCH LOGGING:                        
  SYSNAME:  MVV2     .RPROD03        0        0        0                
                                                                        
DATA SET NAMING CONVENTION IN USE:                                      
  SYSNAME:  MVV2     DWWUSER                                                
                                                                        
UNDO LOG NAMING CONVENTION IN USE:                                      
  SYSNAME:  MVV2     DWW                                                
                                                                        
RCDS NAMING CONVENTION IN USE: DWWUSER.V430
                                            
XCF GROUP NAMING CONVENTION IN USE: PROD
To run the DWWRUNBL job and update the variables, copy member DWWRUNBL from data set SDWWCNTL. To run the job only modify the SETPARM statement using the THLQ DWWUSER.V430. The example below shows the first part of the JCL used to submit the job:
//*-------------------------------------------
//SETPARM  SET THLQ=DWWUSER.V430                       
//*-------------------------------------------
//* Load Vsam data sets                       
//*-------------------------------------------
//LOAD     EXEC PGM=IDCAMS                    
//OUTFILE1 DD  DISP=SHR,                      
//             DSN=&THLQ..CUSTOMER            
//OUTFILE2 DD  DISP=SHR,                      
//             DSN=&THLQ..CUSTOMER.NEW        
//SYSPRINT DD  SYSOUT=* 
When you submit the DWWRUNBL job the output, which is similar to the screen shot below, is saved in the JES2 job log. Look for message DWW264I in the output to confirm that VSAM batch REDO logging completed successfully.
---- FRIDAY,    23 MAY 2008 ----                                           
 IEF403I DWWRUNBL - STARTED - TIME=12.29.12                                
 -                                         --TIMINGS (MINS.)--            -
 -JOBNAME  STEPNAME PROCSTEP    RC   EXCP    CPU    SRB  CLOCK   SERV  PG  
 -DWWRUNBL          LOAD        00     70    .00    .00    .00    459   0  
 DWW264I VSAM BATCH REDO LOGGING COMPLETED SUCCESSFULLY.  956              
  ASID (IN HEX):        002B                                               
  RETURN CODE (IN HEX): 00000000                                           
  REASON CODE (IN HEX): 73050092                                           
 -DWWRUNBL          ADDREC      00     62    .00    .00    .16    337   0  
 IEF404I DWWRUNBL - ENDED - TIME=12.29.22 
Make a note of the time that the DWWRUNBL job is started because this time must be specified as the forward recovery start time during the CICS VR ISPF dialog interface as described in DWWCLIST - ISPF dialog interface.
End of change