‎2007 Nov 13 6:36 PM
I need to create a query using table konv. As the konv is a cluster table, the system doesn't allow this join.
Is it possible to create view for table konv?
or which other possibilities are there to solve my problem?
‎2007 Nov 13 6:38 PM
Better to write simple ABAP Program since KONV Table will not allow to write join.
Thanks
Seshu
‎2007 Nov 13 6:38 PM
Better to write simple ABAP Program since KONV Table will not allow to write join.
Thanks
Seshu
‎2007 Nov 13 6:41 PM
Hi Julio,
look at this ..
http://fuller.mit.edu/hr/cluster_tables.html
You can access cluster tables only via Open SQL,
and only without using joins.
hope it helps you..
Reward poits if useful
Thanks & Regards
ilesh 24x7
‎2007 Nov 13 6:52 PM
‎2007 Nov 14 10:07 AM
‎2007 Nov 14 2:36 PM
‎2007 Nov 14 2:39 PM
You can not use KONV Table in Query since it is cluster table.
if you are not ABAPER then you can ask technical person create simple ABAP Program.
Thanks
Seshu
‎2007 Nov 14 10:09 AM
Hi,
Better to use FOR ALL ENTRIES to retriev data from KONV.
Regards,
Prashant
‎2007 Nov 14 10:43 AM
Hi Julio,
<b>KONV is Cluster table</b>
Try out in this way.. Modify according to ur requirement....
Select KONV~KNUMV
KONV~KPOSN
KONV~KSCHL
KONV~KWERT
From <b>KONV</b>
Where KONV~KNUMV in (
Select VBRK~KNUMV
From <b>VBRK</b> Inner Join <b>VBRP</b>
On VBRKVBELN = VBRPVBELN
Where VBRKKNUMV = KONVKNUMV
And VBRPPOSNR = KONVKPOSN
)
================================
U can't perform JOIN with Pooled or Cluster tables
See another example like this...
To join A018 and KONP .... here A018 is Pooled table... Look at below threads...
Hope ur problem is solved now..
<b>Reward points if useful</b>
Thanks & Regards
ilesh 24x7