‎2007 Apr 30 2:22 PM
Hello!
I have 2 radiobuttons:
SELECTION-SCREEN BEGIN OF BLOCK bloq2 WITH FRAME TITLE text-002.
PARAMETERS: p_kunnr TYPE c RADIOBUTTON GROUP rd,
p_lifnr TYPE c RADIOBUTTON GROUP rd.
SELECTION-SCREEN END OF BLOCK bloq2.
I want disability p_lifnr for always. I can't delete it because other code use this variable. How i can do it?
thx in advance
‎2007 Apr 30 2:25 PM
Hi
use NO-display for that p_LIFNR declaration at the end
or use the following code
LOOP AT SCREEN.
IF screen-name = p_lifnr.
screen-input = 0.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
reward if useful
regards
Anji
Message was edited by:
Anji Reddy Vangala
‎2007 Apr 30 2:24 PM
‎2007 Apr 30 2:25 PM
Hi
use NO-display for that p_LIFNR declaration at the end
or use the following code
LOOP AT SCREEN.
IF screen-name = p_lifnr.
screen-input = 0.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
reward if useful
regards
Anji
Message was edited by:
Anji Reddy Vangala
‎2007 Apr 30 2:28 PM
NO DISPLAY will not show the radio-button.
Use the following code for disabling :
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = p_lifnr.
screen-input = 0.
ENDIF.
MODIFY SCREEN.
ENDLOOP.