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

Table Konv

Former Member
0 Likes
2,982

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?

1 ACCEPTED SOLUTION
Read only

Former Member
1,712

Better to write simple ABAP Program since KONV Table will not allow to write join.

Thanks

Seshu

8 REPLIES 8
Read only

Former Member
1,713

Better to write simple ABAP Program since KONV Table will not allow to write join.

Thanks

Seshu

Read only

Former Member
0 Likes
1,712

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

Read only

Former Member
0 Likes
1,712

What exactly is the problem you want to solve?

Rob

Read only

0 Likes
1,712

I would like to generate a query using vbrk and konv table.

Read only

0 Likes
1,712

So, what code do you have so far?

Rob

Read only

0 Likes
1,712

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

Read only

former_member386202
Active Contributor
0 Likes
1,712

Hi,

Better to use FOR ALL ENTRIES to retriev data from KONV.

Regards,

Prashant

Read only

Former Member
0 Likes
1,712

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