what is the difference between transparent, pooled and
cluster table
Answers were Sorted based on User's Feedback
Answer / hari
Table pools (pools) and table clusters (clusters) are
special table types in the ABAP Dictionary. The data from
several different tables can be stored together in a table
pool or table cluster. Tables assigned to a table pool or
table cluster are referred to as pooled tables or cluster
tables.
Table Pools
===========
A table pool or table cluster should be used exclusively for
storing internal control information (screen sequences,
program parameters, temporary data, continuous texts such as
documentation). Data of commercial relevance is usually
stored in transparent tables.
A table in the database in which all records from the pooled
tables assigned to the table pool are stored corresponds to
a table pool.
Table Clusters
==============
Several logical data records from different cluster tables
can be stored together in one physical record in a table
cluster.
A cluster key consists of a series of freely definable key
fields and a field (Pageno) for distinguishing continuation
records. A cluster also contains a long field (Vardata) that
contains the contents of the data fields of the cluster
tables for this key. If the data does not fit into the long
field, continuation records are created.
Is This Answer Correct ? | 24 Yes | 14 No |
Answer / devi
transparent table: Having one to one relationship with table
definition in the database. we can use it in the inner join
and in index.
pooled tables: having many to one relationship with the
database. we cant use it in inner join and index.
clustered table:having many to one relationship with database.
stores a single table in the sap db, having a common primary
key.
Is This Answer Correct ? | 7 Yes | 4 No |
Answer / vijju
Transparent table has master and transitional data.
we create the transparent tables maximum in ddic. it has one to one relationship between ddic and database.
cluster and pooled tables has control data. it has internal details of system means descriptions, program parameters, screen sequences etc..
it is many to one relationship. ie many tables of cluster/pooled tables has one database table.
cluster has primary key but pooled doesn't.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / eswar
Table Pools
===========
A table pool or table cluster should be used exclusively for
storing internal control information (screen sequences,
program parameters, temporary data, continuous texts such as
documentation). Data of commercial relevance is usually
stored in transparent tables.
A table in the database in which all records from the pooled
tables assigned to the table pool are stored corresponds to
a table pool.
Table Clusters
==============
Several logical data records from different cluster tables
can be stored together in one physical record in a table
cluster.
A cluster key consists of a series of freely definable key
fields and a field (Pageno) for distinguishing continuation
records. A cluster also contains a long field (Vardata) that
contains the contents of the data fields of the cluster
tables for this key. If the data does not fit into the long
field, continuation records are created.
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / abhinesh mishra
plz refer abap in 21 days for these kinda basic ques
Is This Answer Correct ? | 13 Yes | 25 No |
what is the difference between user exit and customer exit? what is ment by cusomer exit?and what is the difference between user exit and badi?
Can we create a field without data element ? If yes what is the difference?
how will you go for row level locking of a z table
2 Answers HP, IIIT, KPIT, Rajiv Gandhi University of Knowledge Technologies RGUKT,
What are the screen painter and menu painter?
How do u handle a button in ALV report. Like in which event?
what can u do in UTP?
What are different ways in which data upload can be done using LSMW?
what is technical documentation and functional documentation? what are the steps for unit testing?
How do you find the information on the current screen?
How do you save data in bdc tables? : abap bdc
Is main window mandatory in smartforms?
What are the pre requisites for For all Entries?