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

How to know the dataset in EDIT mode using REXX?


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

New User


Joined: 05 Jun 2006
Posts: 19

PostPosted: Mon Jun 13, 2011 2:59 pm
Reply with quote

Hi all,
I got a situation where I dont want to get my edit macro run if the dataset is opened in EDIT mode. So, how can I check whether the dataset is in EDIT or VIEW mode in my macro.

My researches on this are:
TSO ISRDDN E -> This command is popping a new panel. But I want that check has to be done in background.
ISPEXEC "LISTA STATUS" -> This is showing only the dataset names which got allocated to that user name.

Please help me in this.

Thanks,
Dubasi
Back to top
View user's profile Send private message
gylbharat

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Mon Jun 13, 2011 3:18 pm
Reply with quote

Hi Dubasi,

You can you something like this.

Code:

ADDRESS ISREDIT                               
"ISREDIT MACRO (IMEMBER)"                     
"(SSESS,SJUNK) = SESSION"                     
IF SSESS ¬= 'VIEW' THEN                       
   DO                                         
     ZEDSMSG='RUN IN VIEW MODE'               
     ADDRESS ISPEXEC "SETMSG MSG(ISRZ000)"   
     EXIT                                     
   END                                       
Back to top
View user's profile Send private message
dubasir

New User


Joined: 05 Jun 2006
Posts: 19

PostPosted: Mon Jun 13, 2011 3:59 pm
Reply with quote

Hi gylbharat,
Thanks for the reply. I got it. The session details can be captured by session command.
Back to top
View user's profile Send private message
gylbharat

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Mon Jun 13, 2011 4:16 pm
Reply with quote

Welcome icon_smile.gif
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 HILITE on Browse mode? TSO/ISPF 2
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