Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
reading sequential file...using tso command

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX
Author Message
Surya Kira nPasumarthi

New User


Joined: 21 Nov 2007
Posts: 8
Location: hyderabad

PostPosted: Wed May 14, 2008 11:07 am    Post subject: reading sequential file...using tso command
Reply with quote

hi,, i want to develop code to read a sequentail file and display data based on some tso command...

for example...my PS look like

e0010 - pfmr2000, pfmr3000
e0020 - pfmr1020, pfmr2020

when i give a tso command..

tso error e0010

its shud....throw me

pfmr2000
pfmr3000

please let me know, if it is possible using rexx and moreover... command to read a sequentail file...
Back to top
View user's profile Send private message
References
PostPosted: Wed May 14, 2008 11:07 am    Post subject: Re: reading sequential file...using tso command Reply with quote

expat

Global Moderator


Joined: 14 Mar 2007
Posts: 2435
Location: Brussels once more ...

PostPosted: Wed May 14, 2008 11:39 am    Post subject:
Reply with quote

Is your REXX / CLIST library concatenated into SYSEXEC and/or SYSPROC ?

And, my phsychic powers are always low on Wednesday, so please post your code too.
Back to top
View user's profile Send private message
Pedro

Active User


Joined: 01 Sep 2006
Posts: 148
Location: work

PostPosted: Wed May 14, 2008 9:42 pm    Post subject: Reply to: reading sequential file...using tso command
Reply with quote

To read a file, use ALLOC and EXECIO:

Code:
 
Address TSO                                     
"ALLOC F(INFILE) DSN('my.seq.dsn') SHR REU"   
"EXECIO * DISKR INFILE ( FINIS STEM LINES."
"FREE F(INFILE)"                             


In the example, a stem variable, lines., will contain the records.

Put your program in SYSPROC or SYSEXEC concatenation.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX All times are GMT + 6 Hours
Page 1 of 1