CICS
CIC-DELAY [REQID(name)] ... [INTERVAL(hhmmss)|TIME(hhmmss)] ... [ERROR(errorpara)]
| ERROR (errorpara) | User-defined error routine to perform when an abnormal condition occurs. | 
| INTERVAL (hhmmss) | Time interval between issuing and executing a call. Hhmmss can be replaced by zero, a decimal constant, or a COBOL data name defined as PIC S9(07) COMP-3. | 
| REQID(name) | Unique call name; can be a literal or COBOL data name (maximum 8 characters). | 
| TIME(hhmmss) | Expiration time for the DELAY function. Hhmmss can be replaced by a decimal constant or a COBOL data name defined as PIC S9(07) COMP-3. | 
CIC-DELAY INTERVAL(500) ERROR(ERROR-PARA) 
REQID('UNIQCOM')
 
                  		CIC-DELAY TIME(013000) ERROR(ERROR-PARA) 
REQID('UNIQCOM')