RECEIVE MAP
| COBOL |
Java |
| EXEC CICS RECEIVE MAP |
ibmCics.receiveMap |
Syntax
ibmCics.receiveMap(new ReceiveMapOptions.Builder()
.map(<Map>)
[.mapSet(<MapSet>)]
[.into(<Into>)]
[.noHandle(true)]
[.setPointer(<SetPointer>)]
[.pointerToVariable(<PointerToVariable>)]
.build());
Parameter(s)
<Map>
The name of the map to be used.
<MapSet>
The name of the mapset to be used.
<Into>
The data area into which the mapped data is to be written.
noHandle
Optional Boolean. If set to true, exceptions created by this command will be ignored.
<SetPointer>
Pointer variable containing the address of the mapped data.
<PointerToVariable>
Optional variable. If set, the value will be updated to the address of the mapped data.
Example(s)
| COBOL |
Java |
EXEC CICS
RECEIVE MAP('DETAILS')
MAPSET('CUSTOMER')
INTO(CUSTFORMI)
END-EXEC.
|
ibmCics.receiveMap(new ReceiveMapOptions.Builder()
.map("DETAILS")
.mapSet("CUSTOMER")
.into(locDef.custformi)
.build());
|