‎2006 Aug 23 8:44 AM
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.
‎2006 Aug 23 8:49 AM
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
‎2006 Aug 23 8:49 AM
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
‎2006 Aug 23 8:51 AM
‎2006 Aug 23 8:54 AM
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