IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Rexx code i cannot Queue the LIST KEEP command.


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
awyn

New User


Joined: 11 Feb 2008
Posts: 49
Location: chennai

PostPosted: Mon Sep 15, 2008 5:39 pm
Reply with quote

Hi,
I can able to print the st panel in spool by Print-hi command through rexx but i cannot open my dataset, when i try to open its saying the dataset is used by ISPF currently..
when i give list keep command in the command line , manually my dataset is displayed as "userid.spf.list" but through rexx code i cannot Queue the LIST KEEP command.. how to do it..
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Mon Sep 15, 2008 8:17 pm
Reply with quote

Your question is not very clear.
However, after you've printed something from SDSF, you should issue a PRINT CLOSE command.
Maybe that's missing?
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue Sep 16, 2008 2:22 am
Reply with quote

If you are using PRINT-HI, you probably are not using SDSF 'print' command, which I recommend you to use.

With SDSF print command, you should use it to open the file, print the data, then close the file. See the online help for SDSF.
Back to top
View user's profile Send private message
awyn

New User


Joined: 11 Feb 2008
Posts: 49
Location: chennai

PostPosted: Tue Sep 16, 2008 9:23 am
Reply with quote

I 'm not printing any jobs into a dataset, i'm just printing the screen(st page)., so i dont know how to use the print close command in it.
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Tue Sep 16, 2008 11:24 am
Reply with quote

The PRINT-HI command is an ISPF command, thus printing the data into ISPF's LIST dataset. Try the command LIST to copy it's content.

O.
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue Sep 16, 2008 9:33 pm
Reply with quote

Quote:
rexx code i cannot Queue the LIST KEEP command

This is how I have issued ISPF commands in the past:
Code:
Address ISPEXEC
"CONTROL NONDISPL ENTER"
ispfcmd = "LIST KEEP"
"DISPLAY PANEL(ISR10000) COMMAND(ispfcmd)"

Quote:

my dataset is displayed as "userid.spf.list"

Actually, it is something like SPF0.LIST through SPF9.LIST. ISPF will cycle through all 10, so you have to issue VGET for ZLSTNAME to get the current name.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top