What is the exact difference between pooled table and
cluster table and explain with examples?
Answers were Sorted based on User's Feedback
Answer / raj
cluster table differance is not addresed in above ans
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rudra vikram
A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.
Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.
A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field.
One of the possible reasons is for instance that their content can be variable in length and build up. Database manipulations in Abap are limited as well.
But pool and cluster table is a many to one relationship table. This means many pool table store in a database table which is know as table pool.
All the pool table stored table in table pool does not need to have any foreign key relationship but in the case of cluster table it is must. And pool and cluster table is basically use to store application data.
Table pool can contain 10 to 1000 small pool table which has 10 to 100 records. But cluster table can contain very big but few (1 to 10) cluster table.
For pool and cluster table you can create secondary index and you can use select distinct, group for pool and cluster table. You can use native SQL statement for pool and cluster table.
A structure is a table without data. It is only filled by program logic at the moment it is needed starting from tables.
A view is a way of looking at the contents of tables. It only contains the combination of the tables at the basis and the way the data needs to be represented. You actually call directly upon the underlying tables.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sivaramakrishna
pooled tables are use for store system data.
and maintain the many to one relation with the table-pool.
which we don't create but we use in real time.
but the transpaerent tables are for storing the application
data i.e master data and transaction data.
and maintain the one to one relatino with the corresponding
table created in underlaying data base for each transparent
table.
Is This Answer Correct ? | 1 Yes | 1 No |
Are EVENTS Possible in LSMW?If so how to achieve?
what is index and types in indexes?
when we are using at new?should we use this inside the loop or outside?what will be the effect?
You are running a report. It is taking long time for execution. What steps will you do to reduce the execution time.
What is sap abap tables?
what is the use of start-of-selection event? what is the difference betn end-of-page and end-of-selection?
how to send mail on smart form
What is the disadvantage of using exec sql statement in abap?
without debugging key how can i debug function module?
Where does the Hide data stored
A field containing quantity amounts (data type quan) must be assigned to a referencetable and a reference field. Explain?
Performance tuning. How can you know which line of code taking long time to execute?