Understanding Tables Types in SAP
Understanding Tables Types in SAP
Views in SAP
SAP stores data using different table types, each with a distinct storage and access
mechanism. The main types are:
4️⃣ Structures
5️⃣ Views
🔹 1️⃣Transparent Tables
✅ Definition:
• The table exists in the database with the same structure as defined in SE11 (ABAP
Dictionary).
• It is the most common table type, used for storing transactional and master data.
✅ Characteristics:
✔ Has the same name and structure in both SAP and the database.
✅ Example Tables:
Table Name Description
VBAK Sales Order Header Data
KNA1 Customer Master Data
MARA Material Master Data
🔹 2️⃣Cluster Tables
✅ Definition:
• A cluster table is a special type of table that groups multiple tables together at the
database level.
• Several logical SAP tables are stored as one physical table in the database.
✅ Characteristics:
✔ Used primarily for SAP system data (e.g., HR & Accounting data).
🔹 3️⃣Pooled Tables
✅ Definition:
• A pooled table is a logical table stored inside a larger database table (pool).
• Several SAP tables are stored together in a single Pooled Table in the database.
✅ Characteristics:
🔹 4️⃣Structures
✅ Definition:
• A structure is like a table but does not store data.
• Used to define data types for internal tables, reports, and function modules.
✅ Characteristics:
✅ Example Structures:
✅ Checking Structures:
🔹 5️⃣Views
✅ Definition:
• It does not store data but is used for reporting and read-only access.
• Used to combine multiple tables into a single view for easy access.
✅ Characteristics:
✅ Example Views:
✅ Checking Views:
🚀 Final Takeaway
Would you like a SQL script to check if a table is Transparent, Cluster, or Pooled? 🚀