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

Diff. b/w Table Types and Data Tables

Former Member
0 Likes
424

Hi,

Can u plz tell me the Diff. b/w Table Types and Data Tables.

2 REPLIES 2
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
372

Hi,

Table types are DDIC objects which are used to create internal tables, they act as data type for creating internal tables.

suppose SPFLI_T is a table type then if you use

DATA: it_spfli type spfli_t.

this creates a internal table to be used with in your program.

Table types does not have a physical table in the database.(They dont occupy memory in the database)

Were as DATABASE tables have physical table in the database.( They occupy memory in the databse).

Regards,

Sesh

Message was edited by:

Seshatalpasai Madala

Read only

Former Member
0 Likes
372

Hi

Table Type is one of the DATA TYPES which we create and reference to this datatype

where as DATA tables are tables that are stored in Database with some data and create straight with TABLES option from SE11

Where as we use DATATYPE option in SE 11 for data type creation

Reward points for useful Answers

Regards

Anji