Appendix B. CICS Smalltalk classes : XCTL command

XCTL command
Transfers control from one application program to another at the same logical level. In Smalltalk, the parameters of the XCTL command are contained in two classes: CICSXctl and CICSXctlResult.
See CICS Application Programming Reference for the syntax of the command and a description of its parameters.
Defined instance methods
Parameters supplied to CICS in CICSXctl
 
Parameters returned by CICS in CICSXctlResult
 
Inherited from CICSResult.
Inherited from CICSResult.
Example
Transfers control to the program using the communication area MyCommarea, which is a subclass of OsPtr.
| result thisComm |
thisComm := MyCommarea calloc.
result := CICS xctl
program: 'CICSSLK2';
commarea: thisComm;
length: 30;
exec.