Application Development 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: 

high range in select-options

Former Member
0 Kudos

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

6 REPLIES 6

gopi_narendra
Active Contributor
0 Kudos

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

former_member404244
Active Contributor
0 Kudos

Hi,

declare like this..

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

Regards,

Nagaraj

0 Kudos

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

varma_narayana
Active Contributor
0 Kudos

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>

Former Member
0 Kudos

Hi

Write like this

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

Thanks

Venkat

Former Member
0 Kudos

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.