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

SELECT-OPTION

Former Member
0 Likes
442

Hi,

I need selection screen to luk like dis,

Kunnr

from to

from to

.

.

from to.

nearly i need 5 lines to give my i/p criteria.

Could anyone favor me in dis aspect.

1 ACCEPTED SOLUTION
Read only

h_senden2
Active Contributor
0 Likes
414

Hi,

a normal select-option will work ! You can extend the from-to as many times you like, by clicking on the button on the right side of the TO value (Multiple selection)

data: wa_kna1 type kna1.

SELECT-OPTIONS: S_KUNNR FOR wa_kna1-kunnr.

regards,

Hans

Message was edited by: Hans Senden

3 REPLIES 3
Read only

h_senden2
Active Contributor
0 Likes
415

Hi,

a normal select-option will work ! You can extend the from-to as many times you like, by clicking on the button on the right side of the TO value (Multiple selection)

data: wa_kna1 type kna1.

SELECT-OPTIONS: S_KUNNR FOR wa_kna1-kunnr.

regards,

Hans

Message was edited by: Hans Senden

Read only

Former Member
0 Likes
414

Use RANGEs structure.

_mohan.

Read only

Former Member
0 Likes
414

You can use SELECT-OPTIONS which will allow you to enter several range of values in you click on the "arrow button" appears next to the high fields.

in your requirment, if you really need that type of fields, to appear, then

take 2 PARAMETERS in each line & write those 2 betwen BEGIN OF LINE & END OF LINE.

ex:

give TEXT-002 as CUSTOMER.

SELECTION-SCREEN : BEGIN OF LINE.
SELECTION-SCREEN  COMMENT 1(20) TEXT-002.
SELECTION-SCREEN : END OF LINE.
SELECTION-SCREEN : BEGIN OF LINE.
PARAMETERS: P_KUNNR1 TYPE KNA1-KUNNR,
P_KUNNR2 TYPE KNA1-KUNNR.
SELECTION-SCREEN : END OF LINE.

regards

Srikanth

Message was edited by: Srikanth Kidambi