Application Development 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: 

i get wrog select why??

Former Member
0 Kudos
108

i made it

SELECT SINGLE VERPR

INTO MBEW-VERPR

FROM MBEW

WHERE MATNR = WA_RECORD-Z_MATNR

AND BWTAR = WA_RECORD-Z_BWTAR.

and i get that this field MBEW-VERPR

is unkown.

thanks.

1 ACCEPTED SOLUTION

abdul_hakim
Active Contributor
0 Kudos
94

hi

declare TABLES MBEW before writing the query.

Abdul

5 REPLIES 5

Former Member
0 Kudos
94

Add a tables statement on the top.

TABLES: MBEW

Regards,

Srikanth

0 Kudos
94

**** I FORGOT THANKS ALL

abdul_hakim
Active Contributor
0 Kudos
95

hi

declare TABLES MBEW before writing the query.

Abdul

Former Member
0 Kudos
94

hi,

include the folloowing statement in the program.

tables : mbew.

SELECT SINGLE VERPR

INTO MBEW-VERPR

FROM MBEW .....

regards,

Sailaja.

Former Member
0 Kudos
94

Hi

use this one.

Tables: MBEW.

SELECT SINGLE VERPR
FROM MBEW
WHERE MATNR = WA_RECORD-Z_MATNR
AND BWTAR = WA_RECORD-Z_BWTAR.