Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How emulate ROUTE command in AIX

Status
Not open for further replies.

josep11477

Programmer
Mar 18, 2004
7
AD
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top