ABAP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2368 Page Views: 

What are Data Clusters in ABAP?



Posted By: Avi Date: 3 December 2009 07:34:32 AM
 Answer:

We can group any complex internal data objects of an ABAP/4 program together in data clusters and store them temporarily in ABAP/4 memory or for longer periods in databases. We can store data clusters in special databases of the ABAP/4 Dictionary. These databases are known as ABAP/4 cluster databases and have a predefined structure. Storing a data cluster is specific to ABAP/4. Although we can also access cluster databases using SQL statements, only ABAP/4 statements are able to decode the structure of the stored data cluster.


Posted By: eTechPlanet


Date: 3 December 2009 07:34:32 AM

In the following section a type of data storage is introduced that can only be used by ABAP programs. The content of any number of data objects of any complexity can be stored in different storage media using the ABAP specific format known as data clusters. Only ABAP programs can use this format and therefore only ABAP programs can import data stored in this fashion back into data objects. The following storage media exist: · Byte String · Internal Table · ABAP Memory · Database Tables · Cross Transaction Application Buffer...


Posted By: Johndecruse


Date: 31 January 2010 10:15:45 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 0797TB
Related Questions
ABAP : Which statement is used to define page footer in a ABAP report program?

Which statement is used to define page footer in a ABAP report program?

END-OF-PAGE.
Category: ABAP Date: 10/2/2009 7:37:04 AM
ABAP : What are the various objects of the ABAP data dictionary?

What are the various objects of the ABAP data dictionary?

Basic objects: 1) Tables 2) Domains 3) Data elements 4) Structures 5) Foreign keys Aggregate object....
Category: ABAP Date: 10/2/2009 7:32:29 AM
ABAP : What is GUI Status?

What is GUI Status?

Each screen in SAP has a GUI status. The status is a collection of interactive interface elements th....
Category: ABAP Date: 9/18/2009 9:53:06 PM
ABAP : What is the difference between the TYPE and LIKE statements in data declaration?

What is the difference between the TYPE and LIKE statements in data declaration?

LIKE is used to define variables that are similar to data objects whereas TYPE is used to define var....
Category: ABAP Date: 9/18/2009 4:11:01 AM
ABAP : How you can verify if two internal tables are equal?

How you can verify if two internal tables are equal?

Two internal tables are equal if each pair of corresponding lines is equal
Category: ABAP Date: 9/18/2009 4:06:48 AM