View previous topic :: View next topic |
Author |
Message |
pete Beginner
Joined: 02 Dec 2002 Posts: 22 Topics: 9 Location: www.state.ct.us
|
Posted: Wed Jun 04, 2008 4:25 pm Post subject: Enter command in Xpediter / CICS |
|
|
Anyone know how to enter a Cobol move command that is longer than 49 characters?
Below is a snip from CICS command area that is limiting a Cobol move statement that is just over 49 positions. I know we can change the code, but sometimes it's nice to test before doing that. I'd like to know how to do this the next time it comes up.
Code: | --------------------- XPEDITER/CICS - SOURCE LISTING (2.L) ----------------TV02
COMMAND ===> 1234567890123456789012345678901234567890123456789 SCROLL ===> CSR |
_________________ Regards,
Pete. |
|
Back to top |
|
 |
Dibakar Advanced

Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Fri Sep 12, 2008 10:19 pm Post subject: |
|
|
if there is no way to give multi line command, i would go for mutliple moves using substring -
move '0123456789' to a(01:10)
move '0123456789' to a(11:10)
move '0123456789' to a(21:10)
move '0123456789' to a(31:10)
move '0123456789' to a(41:10)
move '0123456789' to a(51:10) |
|
Back to top |
|
 |
|
|