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

What is cluster table ?

carlos_zhang3
Participant
0 Likes
1,154

Hello everybody ,

BSEG is a cluster table in SAP . Has anyone know about this type of table ?

because of i can not find this table when i login the DBServer & use SQLPlus .

And as i know this table is combined with another tables ...

Is it defined in SAP DDIC ?

if i want to use another transparent table to join this table in abap/4 how to do it ?

thanks so much !!!

Best Regrads,

Carlos

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,009
5 REPLIES 5
Read only

Former Member
0 Likes
1,009

Cluster Table is Logical Table,it is many to one.

use For all entries and it is huge table ...

If you get any performance issue ,then use index,all primary key in where condition if possible ...

Read only

Former Member
0 Likes
1,010
Read only

carlos_zhang3
Participant
0 Likes
1,009

thanks a lot !

<b>A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field. </b>

Read only

Former Member
0 Likes
1,009

Cluster Table : Cluster tables are logical tables that must be assigned to a table cluster when they are defined. Cluster tables can be used to strore control data. They can also be used to store temporary data or texts, such as documentation.

Read only

Former Member
0 Likes
1,009

Hi

Occasionally, several tables may be linked by a common key. The ABAP/4 Data Dictionary can also combine these tables into a single table. Each data set of the real table within the database contains a key and in a single data field, several data sets of the subsequent table for this key.

As mentioned above, these table types require special data handling, therefore they are not transparent tables.

Note: Both Pooled and Cluster Tables are stored as tables within the database. Only the structures of the two table types which represent a single logical view of the data are defined within the ABAP/4 Data Dictionary. The data is actually stored in bulk storage in a different structure. These tables are commonly loaded into memory (i.e., 'buffered') due to the fact they are typically used for storing internal control information and other types of data with little or no external (business) relevance.

REWARD IF HELPFUL...!!