josep11477
Programmer
I am changing the mainframe system MVS to a AIX sistem. In the new CICS for AIX, I cannot use the ROUTE command. I want to migrate a program with that CICS command. The program sends text to another terminal. The program is like this:
...
EXEC-CICS
ROUTE
LIST(WS-LIST)
NLEOM
END-EXEC.
* Where WS-LIST contains the remote terminal attached to a
* printer
...
EXEC-CICS
SEND TEXT FROM (WS-TEXT) LENGTH(WS-LENGTH)
PAGING
END-EXEC.
...
EXEC-CICS
SEND PAGE AUTOPAGE
END-EXEC.
...
How can I emulate the program without the ROUTE? Is there any option of the SEND command that sends text to another terminal?
Note : I cannot use PAGING neither PAGE
Thanks
...
EXEC-CICS
ROUTE
LIST(WS-LIST)
NLEOM
END-EXEC.
* Where WS-LIST contains the remote terminal attached to a
* printer
...
EXEC-CICS
SEND TEXT FROM (WS-TEXT) LENGTH(WS-LENGTH)
PAGING
END-EXEC.
...
EXEC-CICS
SEND PAGE AUTOPAGE
END-EXEC.
...
How can I emulate the program without the ROUTE? Is there any option of the SEND command that sends text to another terminal?
Note : I cannot use PAGING neither PAGE
Thanks