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

Clustertables

Former Member
0 Likes
519

Hi,

I have tried that Cluster tables BSEG and BSET cannot be joined using ABAP Quick Viewer.

i.e is SQ01, SQ02, SQ03------Tcodes.

Can anybody let me know, is it possible in any other way or through Quick viewr only is it possible.

Thanks

Manju.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
487

Hello,

To read BSEG efficiently,check this link:

Once you get this data,you can use "select for all entries of itab_BSEG".

regards,

Beejal

**reward if it helps

4 REPLIES 4
Read only

Former Member
0 Likes
487

Hi Manju,

It is not possible to join cluster table like BSEG.

But you can perform a selection from BSEG into internal table IT_BSEG and then do the second selection on BSET using 'FOR ALL ENTRIES in IT_BSEG'.

Regards,

Ferry Lianto

Read only

amit_khare
Active Contributor
0 Likes
487

Hi,

As a suggestion, try to avoid using select on cluster tables if you are not providing all the key fields in where clause, it will give major performance issue.

There are alternatives for that which your Functional person can suggest you.

Regards,

Amit

Reward all helpful replies.

Read only

Former Member
0 Likes
488

Hello,

To read BSEG efficiently,check this link:

Once you get this data,you can use "select for all entries of itab_BSEG".

regards,

Beejal

**reward if it helps

Read only

Former Member
0 Likes
487

Hi another way around is...

1. See all tables that are getting collected in a cluster BSEG... and Pick the table which contains data u want... Then do similar thing with BSET and then use Join condition to link two tables / or more table to get desired output

Darshan