Application Development 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: 

physical table?

Former Member
0 Kudos

Hi experts,

I was going through some documentation and found that there is a concept of physical table in abap which is different from transparent table..

Can anyoneone please give me a clear idea of it?

Regards,

bhumika

5 REPLIES 5

Former Member
0 Kudos

This message was moderated.

matt
Active Contributor
0 Kudos

.

Edited by: Matthew Billingham on Jun 27, 2008 9:57 AM Originally in response to an earlier response which has been deleted.

Former Member
0 Kudos

Hi Bhumika.

This concept is more related to pooled tables.

Also, you can differentiate between pool and clustered tables.

Several pooled tables can be combined to form a table pool. The table pool corresponds to a physical table on the database in which all the records of the allocated pooled tables are stored.

That's how you can relate a physical table in other cases also.

Give points wisely.

Harsh

matt
Active Contributor
0 Kudos

>

> Hi experts,

>

> I was going through some documentation and found that there is a concept of physical table in abap which is different from transparent table..

>

> Can anyoneone please give me a clear idea of it?

>

> Regards,

> bhumika

The physical table is how the data is stored in the database server. Fields may be in a different order in the transparent table, than from the server for example. There may be more than one physical table on the db for one transparent table -> this is how append structures work. Each append structure is, on the database, a seperate table, but with the same key as the parent table.

It is very rare that an ABAP developer needs to concern themselves with phyiscal tables.

matt

Former Member
0 Kudos

thanks mathew