Page 1 of 1

What happens when we code 'Send map(mapname).....'

PostPosted: Tue Aug 31, 2010 9:33 pm
by shabi
Hi!
what happens when we code 'send map(mapname) mapset(mapsetname)' in cobol program ?

Re: What happens when we code 'Send map(mapname).....'

PostPosted: Tue Aug 31, 2010 11:30 pm
by Robert Sample
What do you think happens?

Re: What happens when we code 'Send map(mapname).....'

PostPosted: Wed Sep 01, 2010 12:19 am
by NicC
I suggest you refer to the CICS language reference manual.

Re: What happens when we code 'Send map(mapname).....'

PostPosted: Wed Sep 01, 2010 12:58 pm
by CPANTX
SEND MAP command is an EXEC CICS command used to send:
1. the physical map,
2. the symbolic map,
3. both maps together.

The command is:
EXEC CICS SEND
MAP ('mapname')
MAPSET ('mapset name')
[MAPONLY/DATAONLY]
[FROM (data area)]
[ERASE/ERASEUP]
END-EXEC.

MAPONLY specifies only physical map to be sent and DATAONLY specifies only symbolic map to be sent. To send both maps together, omit both.

Re: What happens when we code 'Send map(mapname).....'

PostPosted: Sun Sep 05, 2010 2:40 pm
by shabi
Thank U