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

Dynamic internal tables

Former Member
0 Likes
322

Dear All,

The problem I am stuck in is that -


> I have two internal tables

IT1 with two fields table1 (say, MARA) and field1 (say, MATNR)

and IT2 with two fields table2 (say, MARC) and field2 (say, MATNR)

Now, I want to match whether Field1 = Field2.

Now the Select query , probably using inner join needs to fetch data

but I am confused how shall I write the Select query.

Plz help.................

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
305

SELECT mara~matnr

FROM mara

INNER JOIN marc

ON marcmatnr = maramatnr

WHERE..

Sudha

1 REPLY 1
Read only

Former Member
0 Likes
306

SELECT mara~matnr

FROM mara

INNER JOIN marc

ON marcmatnr = maramatnr

WHERE..

Sudha