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

internal table

Former Member
0 Likes
449

How to convert internal table into clustertable ?

4 REPLIES 4
Read only

Former Member
0 Likes
420

i think this is not possible and irrelevent question...

if you mean to pass data of internal table to cluster table then use insert, some bapi, FM etc...

Read only

Former Member
0 Likes
420

hi sriram,

One is internal table and another one is DB table.

these two are different entities, this is not possible.

cheers,

Chandra

Read only

Former Member
0 Likes
420

Hi,

Internal table is a user defined table in the progran.

cluster table is a database table.

an internal table cannot be converted to a database table.

there r 3 types of DB tble.

Transperent table

pooled table

cluster table.

u can convert from one Transperent to pooled table and cluster table.

regards,

shiva

Read only

Former Member
0 Likes
420

Hi,

<b>An internal table is a virtual table used for processing the data fetched from the database.</b>

It exists only during the runtime in the application server , and terminates when the program execution is finished.

<b>Cluster table is a database table defined in the ABAP Dictionary. Several cluster tables are assigned to a table cluster in the database.</b>

The data from a cluster table can be temoprarily stored in an internal table for processing.

<i>The data from an internal table can be updated into a cluster table.</i>

<i>But it is never possible to convert an internal table into clustertable.</i>

Thank you.

Please reward points.....