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

cluster tables

Former Member
0 Likes
691

tell me some cluster tables

5 REPLIES 5
Read only

Former Member
0 Likes
654

hi,

cluster tables are SAP properietry constuct.

they are used while integrating or installing SAP.

they have many to one one relationship with the database.

reward if useful

rgds

umakanth

Read only

Former Member
0 Likes
654

Hi,

go and see in se16 tcode give the table name DD06l.

in that we have sql tablename and sql class are there. in that system defined clustered and pool tables.

edidoc,cdcls,cvep1,cvep2 is the cluster table

please reward points.

satish.

Read only

Former Member
0 Likes
654

Example for Cluster tables.

BSEG - Accounting Document Segment

PCDCLS - Cluster structure for change documents

RFBLG - Cluster for accounting document

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.

A cluster table have many to 1 relationship. Cluster table are much more complex and you cannot display the data of a cluster table directly. Cluster table have be read and display via your ABAP program.

Table cluster is a special table type in ABAP dictionary. The data from different tables can be stored in a table cluster.

A table cluster should be used exclusively for storing internal control information (screen sequences, program parameters, temporary data, continuous text such as documentation).

Check this link for creating cluster tables.

http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f0b7446011d189700000e8322d00/content.htm

Read only

Former Member
0 Likes
654

Hi Shankar,

Some cluster tables are BSEG, PCL1, PCL2, PCL3, PCL4.

Reward points if helpful.

Bye,

Ananth

Read only

Former Member
0 Likes
654

Hi,

Cluster Table : Cluster tables are stored in table cluster. Cluster tables can accessed by atleat 2 key fields. They can used to store long text such as documentation.

A many cluster table have many to one relationship between appliation server to database. Data stored in cluster table is in RAW format which can not understand directly by SQL statements.

So, we normally use the Function modules like 'READ_TEXT' , 'SAVE_TEXT' etc

EX:- STXL, STXH for scripts