CICS
CIC-START TRANSID(name) ... [INTERVAL(hhmmss)|TIME(hhmmss)] [CICSoptions] ... [ERROR(errorpara)]
| CICSoptions | Valid CICS option. See your CICS reference manual for more information. | 
| ERROR (errorpara) | User-defined error routine to perform when an abnormal condition occurs. | 
| INTERVAL (hhmmss) | Time interval between issuing and executing the call. Hhmmss can be replaced by zero, a decimal constant, or a COBOL data name defined as PIC S9(07) COMP-3. | 
| TIME (hhmmss) | Expiration time for the START function. Hhmmss can be replaced by a decimal constant or a COBOL data name defined as PIC S9(07) COMP-3. | 
| TRANSID (name) | Transaction code identifying the program where control returns; can be a literal (maximum 4 characters) or COBOL data name (minimum 5 characters). | 
CIC-START TRANSID('TRNL') INTERVAL(10000)
... ERROR(ERROR-PARA)
                  		CIC-START TRANSID('TRN2') TIME(173000)
... TERMID('STA3') ERROR(ERROR-PARA)