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

TSO commands in REXX


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
prafull

New User


Joined: 08 Dec 2006
Posts: 48

PostPosted: Mon May 19, 2008 10:46 am
Reply with quote

Hi All,

There are some TSO commands (CLIST commands) which are present in our SYSB. Can anyone guide me how can I use these TSO commands any REXX?

Would be really helpful...
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: Mon May 19, 2008 10:50 am
Reply with quote

Hello,

Your question is not clear, but if you use the forum SEARCH or just look around in the REXX section of the forum, there are many examples.

When you have a more specific question, post what you found and your question about what you found and someone will have an answer.
Back to top
View user's profile Send private message
prafull

New User


Joined: 08 Dec 2006
Posts: 48

PostPosted: Mon May 19, 2008 12:03 pm
Reply with quote

Hi

As far as I know, we can use TSO commands as Address TSO or Address ISREDIT followed by a command in REXX.
There are certain TSO build commands which work on our SYSB. e.g. to find the creation date of PS.
How can I use above command is REXX?
(I don't want to use ZDLCDATE provided by ISPF LMDLIST service)

Hope u get my question this time... icon_smile.gif
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon May 19, 2008 12:11 pm
Reply with quote

Quote:
There are certain TSO build commands which work on our SYSB. e.g. to find the creation date of PS.
How can I use above command is REXX?


the most You can get from asking on a forum
is how to invoke standard ( IBM provided ) TSO commands,
we have done it, and the documentation is available

but....
invoking Your in house written commands,
we have never done it, the documentation is not available to us

if they have been properly written they should behave like any IBM provided TSO command
and invoked as such,

the best thing to do is to search Your in house documentation and/or ask Your support
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Mon May 19, 2008 9:44 pm
Reply with quote

Enrico is right, it is difficult for us to help with specific local commands.

I general, if you need to prefix your command with "TSO", then you should be able to invoke it from rexx with something like this:
Code:

Address TSO
"%yourclst"


If your command is not prefixed with "TSO" and it needs to run from within the ISPF editor, then you can invoke it from rexx with something like this:
Code:

Address ISREDIT
"MACRO"
"%yourclst"

[/code]
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 -> CLIST & REXX

 


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