Page 1 of 1

Hide field entry in rexx panel

PostPosted: Wed Feb 15, 2012 10:11 am
by Balamurugan21
Hi All ,

I have a requirement where i would need to get some inputs from a REXX panel & submit through a JCL .
I need some sensible information field to be blank (ie whay user types should not be visible) when the user keys the value in the particular field.

Can anybody help me how to declare the field in rexx panel ?

Re: Hide field entry in rexx panel

PostPosted: Wed Feb 15, 2012 11:01 am
by steve-myers
There is no such thing as a "Rexx panel." The nearest thing might be an ISPF panel with fields that are interrogated by Rexx. ISPF panels are documented with ISPF.

Re: Hide field entry in rexx panel

PostPosted: Wed Feb 15, 2012 1:06 pm
by mongan
You need to look at the Panel attributes and you need to make the input field dark - so that the input can not be seen. I have never used it so you will have to look it up yourself.
)ATTR DEFAULT(%#_)                                                 
       #   TYPE(TEXT) INTENS(LOW) SKIP(ON)                         
       $   TYPE(TEXT) INTENS(NON) SKIP(ON)                         
       Â§   TYPE(OUTPUT) INTENS(LOW) CAPS(OFF) SKIP(ON) COLOR(YELLOW)
       _   TYPE(INPUT) INTENS(HIGH) CAPS(ON) JUST(LEFT)