InterviewSolution
| 1. |
What Is The Difference Between Clustered Tables And Pooled Tables? |
|
Answer» A pooled table is used to combine SEVERAL logical tables in the ABAP/4 dictionary. Pooled tables are logical tables that MUST be assigned to a table POOL when they are defined. Cluster table are logical tables that must be assigned to a table cluster when they are defined. Cluster table can be used to store control DATA. They can also used to store TEMPORARY data or text such as documentation. A pooled table is used to combine several logical tables in the ABAP/4 dictionary. Pooled tables are logical tables that must be assigned to a table pool when they are defined. Cluster table are logical tables that must be assigned to a table cluster when they are defined. Cluster table can be used to store control data. They can also used to store temporary data or text such as documentation. |
|