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

ISPF libraries


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

New User


Joined: 25 Dec 2008
Posts: 35
Location: India

PostPosted: Thu Dec 10, 2009 12:01 pm
Reply with quote

Hello friends,

I have a REXX code wherein I am using TSO as well as ISPF services. I need to run this job in batch mode using IKJEFT01. However, additional libraries needs to be specified for ISPF services to work.

Is there any job or command or any log, where I can check the ISPF libraries specific to my system? Or can someone direct me to right path?


Thanks in advance.

Andy.
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Thu Dec 10, 2009 12:04 pm
Reply with quote

www.sillysot.com/mvs/batchpdf.htm
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Thu Dec 10, 2009 10:21 pm
Reply with quote

Use TSO ISRDDN to see which ISP* libraries are being used.
Back to top
View user's profile Send private message
Andy85

New User


Joined: 25 Dec 2008
Posts: 35
Location: India

PostPosted: Fri Dec 11, 2009 9:29 am
Reply with quote

Yes....!!!! This command gives me all libraries. Thanks a lot. My REXX code is working well now. icon_biggrin.gif

Andy.
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Fri Dec 11, 2009 12:34 pm
Reply with quote

which command?
Back to top
View user's profile Send private message
Andy85

New User


Joined: 25 Dec 2008
Posts: 35
Location: India

PostPosted: Fri Dec 11, 2009 1:40 pm
Reply with quote

Quote:

Use TSO ISRDDN to see which ISP* libraries are being used


Typing TSO ISRDDN on command line gives you detail about all ISP* libraries which you can then use for batch execution of ISPF REXX
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Fri Dec 11, 2009 2:37 pm
Reply with quote

MBabu, have fun.
Back to top
View user's profile Send private message
Rock Xu

New User


Joined: 04 Dec 2009
Posts: 15
Location: Shanghai China

PostPosted: Tue Dec 15, 2009 12:52 pm
Reply with quote

But my system can not recognize this command. The information "COMMAND ISRDDN NOT FOUND".
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Tue Dec 15, 2009 1:25 pm
Reply with quote

Please tell us what you did just before you get this mesage
Quote:
"COMMAND ISRDDN NOT FOUND".


Did you try any one of these?

1. At command prompt, TSO ISRDDN?
2. At command prompt, ISRDDN?
Back to top
View user's profile Send private message
Rock Xu

New User


Joined: 04 Dec 2009
Posts: 15
Location: Shanghai China

PostPosted: Tue Dec 15, 2009 2:28 pm
Reply with quote

I did nothing. Just log on tso and try this command.
I have tried both 'tso isrddn' and 'isrddn'
[/img]
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Tue Dec 15, 2009 2:30 pm
Reply with quote

Rock Xu wrote:
I did nothing.
If you did nothing, I can't help you - do something.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Tue Dec 15, 2009 2:33 pm
Reply with quote

Anuj,

it is possible that some sites limit the use of ISRDDN. I have worked at one site where the sysprogs deemed that only they should be afforded the delights of ISRDDN.
Back to top
View user's profile Send private message
Rock Xu

New User


Joined: 04 Dec 2009
Posts: 15
Location: Shanghai China

PostPosted: Tue Dec 15, 2009 2:38 pm
Reply with quote

Yes. I think so,too.
Maybe I need to buy a MF for myself.
Thank you for your reply, Anuj.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Dec 15, 2009 8:33 pm
Reply with quote

Hello,

Quote:
Maybe I need to buy a MF for myself.
You might look into the Hercules system - mainframe for your pc. . . icon_smile.gif

If you get ""COMMAND ISRDDN NOT FOUND"." i suspect your logon procedure does not have the library included. If you received a security error, it is "found" but you don't have permission.

It may be worth asking if you may have permission. I've been more places that restrict usage than permit use. . .
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Tue Dec 15, 2009 10:33 pm
Reply with quote

it could be removed from the ISPF libraries but it is in the standard libraries. Try also the command DDLIST (without the TSO prefix) since that is an alias to ISRDDN in the ISPF command table. Still, you can always use that BATCHPDF program that does all the work for you and does not rely on any external programs to get ddnames.
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Tue Dec 15, 2009 11:21 pm
Reply with quote

Quote:
you can always use that <external program> BATCHPDF program that does all the work for you and does not rely on any external programs to get ddnames.


I am not sure I understand the difference.
Back to top
View user's profile Send private message
Rock Xu

New User


Joined: 04 Dec 2009
Posts: 15
Location: Shanghai China

PostPosted: Wed Dec 16, 2009 8:58 am
Reply with quote

Yes. 'DDLIST' works. I can see the libs. Thanks MBabu.
And I will try ISRDDN on my Hercules. Thanks Moderator, too.
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Wed Dec 16, 2009 4:05 pm
Reply with quote

Pedro wrote:
Quote:
you can always use that <external program> BATCHPDF program that does all the work for you and does not rely on any external programs to get ddnames.


I am not sure I understand the difference.
Just that batchpdf does not call anything other that the ISPF services that are guaranteed to be there and that it satisfies the original requirement to create JCL that will run ISPF services.
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 Looking for a little history of ISPF ... TSO/ISPF 5
No new posts Adding QMF and SPUFI to the ISPF menu DB2 20
No new posts Issue after ISPF copy to Linklist Lib... TSO/ISPF 1
No new posts Is there a way to close VSAM files us... CICS 8
No new posts step by step trace 4 ISPF dialog call... TSO/ISPF 17
Search our Forums:

Back to Top