- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference between Internal tables, structures or work areas in SAP ABAP
Internal tables − Internal tables are a means of storing data in the fixed format in working memory of ABAP. The data is stored line by line. So it is necessary for the data to be in a fixed format. Generally, they are used to store data in database tables to be used in ABAP programs.
Structures− Structures are basically data objects consisting of various components or fields of any data types. It differs from the tables in a way that it simulates the format of the table and is used to hold one row of data whereas table has multiple rows of data.
Work-Areas − Work area is basically variables used to store a single row of data. It is similar to structure apart from the fact that it can only be used at program level whereas structure can be used at data dictionary level as well.
- Related Articles
- Difference between Work area, global structure and internal table in SAP ABAP
- Difference between class alv and function alv in SAP ABAP?
- Difference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP
- Inserting rows to an internal table through debug in SAP ABAP
- Internal Table itab declaration in SAP and difference between both the declarations
- Adding rows in an internal table with header line in SAP ABAP
- Difference between C structures and C++ structures
- Difference between Types,Types,Type-POOL and TYPE-POOLS in SAP ABAP
- Usage of subqueries in internal table as condition in SAP ABAP source code.
- Modification not working for both internal table and control table in SAP ABAP
- Distinguish SAP ABAP code between clients
- Difference between Structures in C and C++
- Difference between the use of Type, Types and TYPE POOL in SAP ABAP programming.
- Difference Between Internal and External fragmentation
- Fetch fields from table or structure in ABAP SAP
