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

OOABAP

Former Member
0 Likes
326

Hi,

I want to use select-options in global class.

I am able to use parameters without any problem, I am not able to do same for select-options.

plz send me sample coding of that.

Thanks in advance,

sarath

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
297

Hi

there are certain strcutures like WSELKUNNR,WSELMATNR to declare the ranges and Select options use them.

Declare the field in TYPES : tr_matnr TYPE RANGE of MATNR and use in select options

select-options: so_matnr type tr_matnr.

and in where condition use this IN SO_MATNR

Regards

Anji

1 REPLY 1
Read only

Former Member
0 Likes
298

Hi

there are certain strcutures like WSELKUNNR,WSELMATNR to declare the ranges and Select options use them.

Declare the field in TYPES : tr_matnr TYPE RANGE of MATNR and use in select options

select-options: so_matnr type tr_matnr.

and in where condition use this IN SO_MATNR

Regards

Anji