> -----Original Message-----
> From: IBM Mainframe Discussion List 
> [mailto:[EMAIL PROTECTED] On Behalf Of Carroll, William
> Sent: Tuesday, October 23, 2007 1:28 PM
> To: IBM-MAIN@BAMA.UA.EDU
> Subject: tso racf
> 
> 
> is there anyway to block or ignore or stop somebody from 
> entering a command
> on the command prompt through RACF, or any other method.  i 
> know i can put a
> command on the 'proc' execute, passing it as a parm, during the logon
> process.  my management wants to know if i can block the 
> command prompt for
> non-system programmer folks.  so when they exit ispf, they 
> get logged off
> of tso as well. I apologize for not giving a more accurate 
> picture to begin with.
> 
> 
> 
> TIA
> 
> Bill Carroll  

I would guess that you actually invoke some sort of "start up" CLIST or
REXX program. If so, then after the line which invokes ISPF, put in the
LOGOFF command. You would also need to capture any attention exits. In
CLIST, you could put the lines:

ATTN +
 DO
  LOGOFF
 END

At the top of the startup CLIST. In REXX, I think that you'd

SIGNAL ON HALT 
...
HALT: "LOGOFF"

This doesn't do anything for disabling ISPF option 6, or keep the person
from doing a "TSO somecmd" on almost any screen to invoke "somecmd"
while in ISPF. So, the general answer is still NO.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it.

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to