2008 Nov 17 9:09 AM
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
2008 Nov 17 9:11 AM
it is not possible for u to put a join in either pooled table and cluster table.
use FOR ALL ENTRIES syntax instead
2008 Nov 17 10:03 AM
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
2008 Nov 17 10:18 AM
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
2008 Nov 17 11:45 AM