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: 

Is there full left outer join in ABAP

Former Member
0 Kudos
106

I would like to do a left outer join of table A and B with key ID, so that I can get all fields in table A and one field from table B.

However I found it seems I have to list all fields in table A one by one in the SELECT, but I have many fields in table A....

Is there any easier way instead of listing all the fields out?

I tried A~*...but of course it doesn't work..

2 REPLIES 2

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos
59

No full left outer join is avaialable in abap.

You have to do in the same fashion : as you mentioned, field by field.

0 Kudos
59

Unfortunately it's what I thought...Thanks for your help!