Page 1 of 1

Writing data in Sequential file thru rexx

PostPosted: Sun Jan 08, 2017 8:33 pm
by arya_starc
Hi All,

I am writig hard code syntax in sequential file thru rexx thru the outline command.
Below is the code.

/*  rexx  */
"ALLOC F(INFILE) DSN('TS.TEST.FILE.SE')
"
EXECIO * DISKR INFILE( FINIS STEM MYFILE."
"FREE F(INFILE)"
out = lineout(TS.TEST.FILE.SE."LINE 1")
 


this is giving error message Routine not found

Re: Writing data in Sequential file thru rexx

PostPosted: Sun Jan 08, 2017 9:43 pm
by enrico-sorichetti
just guessing ( You posted nothing useful for the problem determination )

probably because the Rexx extension which implements lineout was not installed

Re: Writing data in Sequential file thru rexx

PostPosted: Mon Jan 09, 2017 3:41 pm
by NicC
So you need to use EXECIO for all your I/O and read the rexx manual for z/OS to see what other functions are not available without the extension.