Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hide Selectoption and Parameter

Former Member
0 Likes
2,696

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

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
2,659

Did you check F1 help and did you NOT see the NO-DISPLAY option???

13 REPLIES 13
Read only

Sm1tje
Active Contributor
0 Likes
2,660

Did you check F1 help and did you NOT see the NO-DISPLAY option???

Read only

former_member222860
Active Contributor
0 Likes
2,659

NO-DISPLAY

Read only

Former Member
0 Likes
2,659

Dear Usman,

use this.

parameters: var type matnr no-dispaly.

use NO Display command to hide Selectoption and Parameter.

Rgds,

Kiran

Read only

Madhurivs23
Participant
0 Likes
2,659

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

Read only

Former Member
0 Likes
2,659

Hii

u can simply delete those from coding, if u dont want.

u can also use no display

Thanks

Read only

Former Member
0 Likes
2,659

Dear Nausal,

Use NO Display command to hide Selectoption and Parameter.

Cheers

fareed

Read only

Former Member
0 Likes
2,659

NO-DISPLAY

and if you are using screen's than than u have a option called in-visible

Read only

Former Member
0 Likes
2,659

NO-DISPLAY

and if you are using screen's than than u have a option called in-visible

Read only

Former Member
0 Likes
2,659

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

Read only

Former Member
0 Likes
2,659

Hi,

Use NO-DISPLAY command

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
2,659

Hi,

Use the following code:

select-options: s_kunnr for kna1-kunnr no-display.

Naveen M.

Read only

Jay71
Participant
0 Likes
2,659

Hi,

Did u search SDN before posting this query?

Jayaram

Read only

Former Member
0 Likes
2,659

Thanks To All