What is the differrences between structure and table in data dictionary in ABAP?

Showing Answers 1 - 6 of 6 Answers

Ranjeet Pandey

  • Sep 22nd, 2006
 

stucture does not contain data in it phsically but the table contains physical data .

balu

  • Sep 24th, 2006
 

structure in a  program used for dyanmic memory allocation.

stucture contain only fields i did not have any physical data but in table it have

  Was this answer useful?  Yes

Arun Pandey

  • Sep 25th, 2006
 

Structure and table both are 2/2 matrices but there are many differences between table and structure.

 

  1. Table can store the data physically but a structure dose not store.
  2. Table can have primary key but a structure dose not have.
  3. Table can have the technical attribute but a structure dose not have.

  Was this answer useful?  Yes

venusap1

  • Oct 9th, 2006
 

structure does't contain technical attributes.

structure does't contain primary key.

structure does't stores underline database level. 

  Was this answer useful?  Yes

gnanesh

  • Oct 22nd, 2006
 

structure does not have the data in it and it will not allocate any memory where as table is quite opposite to it. it contains data and it allocates memory.

  Was this answer useful?  Yes

Ramss

  • Nov 16th, 2006
 

A structure is a series of  fields grouped together under a common name. it is very similar to a table.

1.A structure doesn?t have an associated database table.

2.A structure doesn?t have a primary key

3. A structure doesn?t have technical attributes.

structure follow the same naming convention as transparent tables, and you can not have a table and structure of the same name.

Thanks.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions