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

pooledtables

Former Member
0 Likes
368

hi experts !

are pooledtables and cluster tables are used in real scenerio. how i can find and use pooledtables and cluster tables .

thanks

3 REPLIES 3
Read only

Former Member
0 Likes
352

Hi,

Of course an example is table BSEG which is the heart of FI. But we dont select data from it directly. Without BSEG there is no FI at all.

thanks

Dan

Read only

Former Member
0 Likes
352

Hi Ranjana Sharma ,

create a transperant table in SE11 with fields and then before activating

Goto Extras-->Change table category and select pooled or cluster table.

They Are used in real scenarios ,Check BSEG table used in FI.

Reward points if useful.

THanks ,

Surya Pydikondala.

Read only

Former Member
0 Likes
352

hi ranjana,

Pooled Table : Pooled tables are logical tables that must be assigned to a table pool when they are defined. Pooled tables are used to store control data. Several pooled tables can be cominied in a table pool. The data of these pooled tables are then sorted in a common table in the database.

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.

Pool Tables (match codes, look up tables)

1) Should be accessed via primary key or

2) Should be buffered (SE11->Display Table->technical settings)

3) No secondary indexes

Select * is Ok because all columns retrieved anyway

Cluster Tables (BSEG,BSEC)

1) Should be accessed via primary key - very fast retrieval otherwise very slow

2) No secondary indexes

3) Select * is Ok because all columns retrieved anyway. Performing an operation on multiple rows is more efficient than single row operations. Therefore you still want to select into an internal table. If many rows are being selected into the internal table, you might still like to retrieve specific columns to cut down on the memory required.

4) Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported

5) Can not be buffered

regards ,

sandeep

reward point if helpful