what are the similarities between internal tables and
structures?
Answers were Sorted based on User's Feedback
Answer / amith
1)Both Internal Tables and strucures do not have enries
stored in data base.
2) Both of them do not have a primary key or a forieng key
relation ship with any table in the data base.
3) Unlike database tables both internal tables and
structures do not have technical settings.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / bandivenkateswarlu
The diffeneces between the internal table and sturctres are
given below.
Internal tables: are tempareroy tables for the database
tables are using created at the runtime of the system. It
will allocate the memory of the system . but where as in the
sturctures are created in within in the progrm. it dont
allocate the space in the memory . But in internal tables
are created the runtime of the system.
The default internal table size is 8KB.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / p.lokesh
Internal table is a temporary storage area that exits at
runtime of the program .
Structure also exists at runtime of the program.
Structute does not have allocate memory in the system.
where as Internal table allocate memory in the system.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / kishore
Internal tables hold Multiple records of the same structure.
Where as Structure can hold only one record.
Is This Answer Correct ? | 1 Yes | 0 No |
In SAP R/3 architecture, how many databases can exist?
In an ABAP program how do you access data that exists on a presentation server vs on an application server?
What does the extract statement do in extract datasets?
Name a few data dictionary objects?
Explain open dataset in sap abap?
where are the system fields stored?
For a package or transaction we will be having multiple no of user exits .Out of these exits how we will find out that the particular exit is the exit which we have to code
Can I create a Transaction code for a custom Table ? If Yes How can I ?
Can we define our own match code id's for sap matchcodes? : abap data dictionary
What are the differences between transparent tables, pooled tables & cluster tables? : abap data dictionary
What are the events in ABAP language?
Is it possible to include two transactions with one group name in one program in session method ?