ADDRESS
| COBOL |
Java |
| EXEC CICS ADDRESS |
ibmCics.address |
Syntax
ibmCics.address( CicsAddressOption.<option>, <DataArea>, [<noHandle>] );
Parameters
- <option>
- The storage type option, see the CicsAddressOption enum for all available options. Includes COMM_AREA, CWA, TWA and others.
- <DataArea>
- Pointer variable. The value will be updated to the address of the storage area if available.
- <noHandle>
- Optional boolean. If set to true, exceptions created by this command will be ignored.
Examples
| COBOL |
Java |
EXEC CICS
ADDRESS
CWA(WS-STORAGE-PTR)
NOHANDLE
END-EXEC.
|
ibmCics.address(CicsAddressOption.CWA, locDef.ws_Storage_Ptr, true);
|