cancel
Showing results for 
Search instead for 
Did you mean: 

Select option issue

Former Member
0 Kudos

HI,

I am using a select option for material. I am passing this to the function module . In the function module I am passing this value to field symbol like below

assign i_matnr->* to <fs_matnr>. so that i can use this in select statement

but when I check the low and high value in field symbol they are not appeneded with 0's.

ex:

if I enter range as 1 to 900 and use this statement assign i_matnr->* to <fs_matnr>. then

Fs_matnr-low is 1 and fs_matnr-high is 900.

if I use this in the select statement like

select * into table itab from mara where matnr in <fs_matnr> it does not retreive the correct values.

*tHE ISSUSE HERE IS FS_MATNR-LOW SHOULD HAVE BEEN 0000000000000000001 AND FS_MATNR-HIGH AS 000000000000000900 * AS ITS THE CASE WITH NORMAL SELECT OPTIONS.

aNY THOUGHTS??

THANKS IN ADVANCE.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

i am not sure of the issue but its working for some and not working for some fields..

Thanks

abhimanyu_lagishetti7
Active Contributor
0 Kudos

what is the type of <fs_matnr> ?

Abhi