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

can we invoke =3.4 pannels thru our rexx pgm


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

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Tue Feb 03, 2009 8:19 pm
Reply with quote

in generall using =3.4 option we will specify the HLQ DSN name and it displays the matching datasets in the next screen.

the same way can we invoke this facility thru my rexx pgm

if its possible kindly let me know
Back to top
View user's profile Send private message
PeD

Active User


Joined: 26 Nov 2005
Posts: 459
Location: Belgium

PostPosted: Tue Feb 03, 2009 8:22 pm
Reply with quote

Why not try this from Belgium



Code:
ZDLDSNLV = your.file ( if any)                                 
ZDLPVL   = " "                                   
ADDRESS ISPEXEC                                   
"VPUT (ZDLDSNLV ZDLPVL)"                         
"ISPEXEC SELECT PGM(ISRUDL) PARM(ISRUDLP)"       


Cheers
Pierre
Back to top
View user's profile Send private message
nkothako

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Tue Feb 03, 2009 8:30 pm
Reply with quote

where i can get this type of calls or other information
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Feb 03, 2009 8:41 pm
Reply with quote

I'm also thinking that you can use the ISPF LMDDISP service:

Code:

/* REXX */
"ISPEXEC LMDINIT LISTID(listidv) LEVEL(HLQ.*)"
"ISPEXEC LMDDISP LISTID("listidv") STATUS(YES)"
"ISPEXEC LMDFREE LISTID("listidv")"
...
Exit 0
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Tue Feb 03, 2009 10:10 pm
Reply with quote

Quote:
where i can get this type of calls or other information

You can look at the panel that calls it to see how to call it. And you can see the panel itself to see what variables it uses.
Back to top
View user's profile Send private message
nkothako

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Wed Feb 04, 2009 12:37 pm
Reply with quote

pedro thanks alot for your response

But i couldn't see any pannel name on start menu or 3.4 option.

could you please give me any example. so that i could you services directly
Back to top
View user's profile Send private message
PeD

Active User


Joined: 26 Nov 2005
Posts: 459
Location: Belgium

PostPosted: Wed Feb 04, 2009 12:48 pm
Reply with quote

type PANELID
Back to top
View user's profile Send private message
nkothako

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Wed Feb 04, 2009 3:15 pm
Reply with quote

i am getting panelid but unable to get the fields
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Wed Feb 04, 2009 9:48 pm
Reply with quote

1. Turn on PANELID to see the name of the panel. It will likely be the name of a member in the ISPPLIB concatenation. For example, you might find a member name like ISRUTIL

2. use TSO ISRDDN to list the allocated files.

3. in the command line of ISRDDN, type: MEMBER ISRUTIL and it will search for the member with in the allocated files.

4. Type V in front of the PDS that has the ISRUTIL member. You will be able to see the design of the panel.
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 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
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top