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

Supress PF keys


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

New User


Joined: 24 May 2006
Posts: 13

PostPosted: Thu Jan 31, 2008 6:19 pm
Reply with quote

I developed a Panel. When I display the Panel there are list of default PF keys which are displayed in the Panel.

The PF keys are F1=HELP F2=SPLIT F3=END F4=RETURN F5=RFIND
F6=RCHANGE F7=UP F8=DOWN F9=SWAP F10=LEFT

I want to supress these keys when I display the panel and I have to have my own 3 PF keys, PF3 -EXIT, PF6 - CONFIRM, PF12- CANCEL.
Back to top
View user's profile Send private message
superk

Global Moderator


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

PostPosted: Thu Jan 31, 2008 6:34 pm
Reply with quote

sada_polaris wrote:
I want to supress these keys when I display the panel


Use the PFSHOW OFF command.
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Thu Jan 31, 2008 6:41 pm
Reply with quote

You can do something like this:
Code:
ADDRESS ISPEXEC "VGET (ZPFSHOW) PROFILE"                   
IF ZPFSHOW <> "OFF" THEN DO                                 
   STACK = "PFSHOW OFF"                                     
   ADDRESS ISPEXEC "DISPLAY PANEL(any_dummy_panel) COMMAND(STACK)"
END                                                         


O.
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 Use input file with OMIT rcd keys? DFSORT/ICETOOL 15
No new posts Any JCL or VSAM Utility to get number... JCL & VSAM 1
No new posts Join the keys via JCL DFSORT/ICETOOL 14
No new posts Process only last key record in a fil... DFSORT/ICETOOL 8
No new posts ICETOOL - Finding keys within a file DFSORT/ICETOOL 10
Search our Forums:

Back to Top