Allocating the RCDS

Examples of allocating RCDS.

The ddnames for the RCDSs are DWWCON1, DWWCON2, and DWWCON3. An example of allocating the RCDS in the CICS® VR recovery job.:

Figure 1. Allocating the RCDS for the CICS VR Run
 //DWWCON1  DD DSN=DWW.DWWCON1,DISP=SHR
 //DWWCON2  DD DSN=DWW.DWWCON2,DISP=SHR
 //DWWCON3  DD DSN=DWW.DWWCON3,DISP=SHR

An example of allocating the RCDS to the CICS VR ISPF dialog interface:

Figure 2. Allocating the RCDS to the CICS VR ISPF Dialog Interface
 ALLOC FI(DWWCON1)  DA('DWW.DWWCON1') SHR REUSE
 ALLOC FI(DWWCON2)  DA('DWW.DWWCON2') SHR REUSE
 ALLOC FI(DWWCON3)  DA('DWW.DWWCON3') SHR REUSE