‎2007 Dec 30 5:26 AM
‎2007 Dec 30 7:43 AM
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
‎2007 Dec 30 7:52 AM
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.
‎2007 Dec 31 1:00 AM
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
‎2007 Dec 31 2:19 PM
Hi Shankar,
Some cluster tables are BSEG, PCL1, PCL2, PCL3, PCL4.
Reward points if helpful.
Bye,
Ananth
‎2008 Jan 02 9:45 AM
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