cancel
Showing results for 
Search instead for 
Did you mean: 

Difference Between Table & Structure

Former Member
0 Kudos

Hello every one,

Can any one please tell me What is the difference between Table and Structure.

Thanks

Sachin dev

Accepted Solutions (0)

Answers (4)

Answers (4)

madhu_vadlamani
Active Contributor
0 Kudos

This message was moderated.

Former Member
0 Kudos

Hope this link helps:

Former Member
0 Kudos

Hello,

Table: Tabular array of data in the ABAP Dictionary. A table consists of columns (data values of the same type) and rows (data records). Each record can be identified uniquely by one or several fields.

Structure: A structure is a complex type and consists of components that can have any type (data element, structure, table type or reference type).

Structures are used in ABAP programs or to define the type of the interface parameters of function modules.

Prase

0 Kudos

HI,

Table is SAP Tables which stores data in its fields.

Structures are temporary tables which doesn't store data in it but use it for calculation purpose during the transactions.

regards

Anil

Former Member
0 Kudos

Hi,

Just to give you a brief overview.

Table is something that will have the real records (more than 1 record) in the database which gets created when we create a new document in SAP system or change a document or create master data or create transaction data or create a control data.

However,structure is somethin which is dynamically populated during various phases.Also the values in a structure gets refreshed once any operation is finished.Moreover it will have one record only unlike a table.