- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 the use of Type, Types and TYPE POOL in SAP ABAP programming.
TYPE keyword is used for Data or FIELD Symbol declaration
You use TYPES keyword for defining local types
TYPE POOL is used for grouping local types so that you can use them without duplication
TYPES: BEGIN OF z_t000, Name TYPE c Length 10. N_id TYPE i. TYPES END OF z_t000.
One of the common examples of TYPE POOL is Type Group ABAP. Navigate to Transaction SE11 and select Type Group and type ABAP there then press F7. You will see the body of the type group which is defined by the keyword TYPE-POOL.

- Related Articles
- Difference between Types,Types,Type-POOL and TYPE-POOLS in SAP ABAP
- Sort Datetime Type in SAP ABAP
- Using real Boolean type in SAP ABAP
- SAP ABAP: Using Elementary data type and reference type with keyword VALUE
- Creating a variable with dynamic variable type in SAP ABAP
- Difference Between Type casting and Type Conversion
- Difference between Core Type and Shell Type Transformer
- Difference between P-Type and N-Type Semiconductor
- Difference Between Type 1 and Type 2 Diabetes
- What is the difference between type conversion and type casting in C#?
- Difference between class alv and function alv in SAP ABAP?
- What\'s the Difference Between Type 1 and Type 2 Diabetes?
- What is the difference between dynamic type variables and object type variables?
- Converting date type SYDATUM in a format like MM/DD/YY in SAP ABAP
- Difference between Work area, global structure and internal table in SAP ABAP

Advertisements