Cli ent Applic ation Considerations
ReqReturnCd
This code is the return code from the Oracle Tuxedo Domain. See the Tuxedo documentation for a complete list of Tuxedo error codes
Request_data
This area is the area where request data gets placed and in which your returned data arrives. The length depends on how long this particular service is configured. Check with the administrator for each service. The maximum value is 32000.
Examples
The following sample is an example of a COBOL CICS client program.
Listing 5-3 COBOL CICS Client Program Example
IDENTIFICATION DIVISION.
TESTCLN. |
| ||
ENVIRONMENT | DIVISION. | ||
CONFIGURATION SECTION. |
| ||
DATA DIVISION. |
| ||
01 FILLER | PIC X(32) | VALUE 'SAMPLE COBOL CICS CLIENT PROGRAM'. | |
01 |
|
| |
05 |
| PIC X(42) VALUE SPACES. | |
05 |
| PIC Z(05) VALUE ZEROS. | |
01 |
| ||
05 | PIC S9(9) | ||
05 | PIC X(16). | ||
05 | PIC S9(9) | ||
05 | PIC S9(9) | ||
05 | PIC S9(9) | ||
05 | PIC X(14). | ||
LINKAGE SECTION. |
| ||
01 DFHCOMMAREA | PIC X(14). | ||
PROCEDURE DIVISION. |
| ||
|
| ||
MOVE +14 |
| TO |
Oracle Tuxedo Mainframe Adapter for TCP - CICS User Guide |