‎2007 Mar 01 2:24 PM
select-options : kunnr for kna1-kunnr.
on the selection screen there is a data base accses for kunnr.
on the selection screen if i want to have my own selected values like 100
200
300
400
500.hw to do that.
‎2007 Mar 01 2:27 PM
select-options : kunnr for kna1-kunnr no-intervals.
now there will be one icon next to select option field , click on that givet he values one by one in row
‎2007 Mar 01 2:29 PM
you have to declare your own values in the domain which is behind the data element.
and then change your code to
select-options : kunnr TYPE kna1-kunnr.
Message was edited by:
Florian Kemmer
‎2007 Mar 01 2:41 PM
Hi,
You can maintain the Value table for this one, in the Domain just maintain the value table, if this is not posiible then you can maintain programetically.
In the Initialization event of the program.
Sel_opt-LOW = 100.
Append Sel_opt.
Sel_opt-LOW = 200.
Append Sel_opt.
Sel_opt-LOW = 300.
Append Sel_opt.Regards
Sudheer