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

Pooled table supported by ABAP Query .................

Former Member
0 Likes
622

Hi,

I have an requirment to create a abap query report .For that one i have to use a pooled table as join with another table?

Is that possible or not?

Reagrd

Ricky

Hi,

I have an requirment to create a abap query report .For that one i have to use a pooled table as join with another table?

Is that possible or not?

Reagrd

Ricky

4 REPLIES 4
Read only

Former Member
0 Likes
595

it is not possible for u to put a join in either pooled table and cluster table.

use FOR ALL ENTRIES syntax instead

Read only

0 Likes
595

Hi,

As per your reply ............it means that we can't use any pool table in any stage of ABAP QUERY design or something else?

Regards

Ricky

Read only

0 Likes
595

Hi,

You can use the tables in ABAP query but not in the direct join format.

For e.g.

Select "data" from BSEG into correspoding fields of table itab.

select "data" from <tablename>

into correspoding fields of table itab1

for all entries of itab

where <conditions>.

Thanks & Regards

Read only

Former Member
0 Likes
595

thnks