what is wrong in my select stmt. kindly validate me.
DATA : v_charvalue TYPE atwrt.
SELECT atwrt
UP TO 1 ROWS
INTO v_charvalue
FROM ausp
WHERE objek = mcha-matnr
AND atinn = 'US_FRENCH_ON'
AND klart = '101'.
ENDSELECT.
When I try to select using se16
with the the values the record is getting selected.
How ever My above select stmt is not fetching value for me.
Thanks.