‎2009 May 28 6:25 AM
Hi all,
I have a selection screen with number of Select options and parameters I want to hide (made invisible)
some select option and parametes
please help how to hide select option and parameters from select screen
Regards
Nausal
‎2009 May 28 6:28 AM
Did you check F1 help and did you NOT see the NO-DISPLAY option???
‎2009 May 28 6:28 AM
Did you check F1 help and did you NOT see the NO-DISPLAY option???
‎2009 May 28 6:28 AM
‎2009 May 28 6:28 AM
Dear Usman,
use this.
parameters: var type matnr no-dispaly.
use NO Display command to hide Selectoption and Parameter.
Rgds,
Kiran
‎2009 May 28 6:28 AM
Hi Nausal,
try no-display for the select option. press F1 on select-options and you will get the help of all the select-options, screen options.,
regards,
Madhuri
‎2009 May 28 6:29 AM
Hii
u can simply delete those from coding, if u dont want.
u can also use no display
Thanks
‎2009 May 28 6:33 AM
Dear Nausal,
Use NO Display command to hide Selectoption and Parameter.
Cheers
fareed
‎2009 May 28 6:37 AM
NO-DISPLAY
and if you are using screen's than than u have a option called in-visible
‎2009 May 28 6:37 AM
NO-DISPLAY
and if you are using screen's than than u have a option called in-visible
‎2009 May 28 6:56 AM
Hi,
If you want to hide some select options or parameters based on some condition then use the below code.
TABLES: p0001.
PARAMETERS: p_rad1 RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND rusr,
p_rad2 RADIOBUTTON GROUP rad1.
SELECT-OPTIONS: s_pernr FOR p0001-pernr MODIF ID sgr,
s_werks FOR p0001-werks MODIF ID rgr.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'SGR'.
IF p_rad1 = 'X'.
screen-active = 1.
ELSE.
screen-active = 0.
ENDIF.
ELSEIF screen-group1 = 'RGR'.
IF p_rad1 = 'X'.
screen-active = 0.
ELSE.
screen-active = 1.
ENDIF.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
Regards,
Kumar Bandanadham
‎2009 May 28 7:01 AM
‎2009 May 28 7:05 AM
Hi,
Use the following code:
select-options: s_kunnr for kna1-kunnr no-display.
Naveen M.
‎2009 May 28 7:07 AM
‎2009 May 28 7:08 AM