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

high range in select-options

Former Member
0 Likes
1,386

how to hide the high value in select-options statement,its urgent

6 REPLIES 6
Read only

gopi_narendra
Active Contributor
0 Likes
1,005

In order to hide the high value for select options use the no interval option.

TABLES : ekko.

SELECT-OPTIONS : so_ebeln FOR ekko-ebeln NO INTERVALS.

Regards

Gopi

Read only

former_member404244
Active Contributor
0 Likes
1,005

Hi,

declare like this..

select-options : s_matnr for mara-matnr no extensions no intervals.

Regards,

Nagaraj

Read only

0 Likes
1,005

select-options : s_var for mara-matnr no-EXTENSION NO INTERVALS.

Read only

varma_narayana
Active Contributor
0 Likes
1,005

Hi

you can do it Staticall using..

tables : MARA.

SELECT-OPTIONS : so_MATNR FOR MARA-MATNR NO INTERVALS.

or Dynamically ..

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'SO_MATNR-HIGH'.

SCREEN-INVISIBLE = 1.

SCREEN-ACTIVE = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

<b>reward if Helpful.</b>

Read only

Former Member
0 Likes
1,005

Hi

Write like this

select-options s_matnr for mara-matnr <b>no intervals</b>.

Thanks

Venkat

Read only

Former Member
0 Likes
1,005

hi,

at designing only u can make select options with out high value as

tables : MARA.

SELECT-OPTIONS : s_MATNR FOR MARDt-MATNR NO INTERVAL

at run time to hide the selct options high value try like this

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'S_MATNR-HIGH'.

SCREEN-INVISIBLE = 1.

SCREEN-ACTIVE = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP

IF HELPFUL REWARD SOME POINTS.

with regards,

Suresh aluri.