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

doubt abt select-option

Former Member
0 Likes
379

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.

3 REPLIES 3
Read only

Former Member
0 Likes
359

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

Read only

Former Member
0 Likes
359

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

Read only

Former Member
0 Likes
359

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