<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: what is data cluster? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544632#M578649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check out the link below it might help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;please reward points if the information is helpful to you&lt;/STRONG&gt;**************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2007 04:16:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-16T04:16:24Z</dc:date>
    <item>
      <title>what is data cluster?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544629#M578646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one explain me with an example what is meant by data cluster ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;P&gt;hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 03:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544629#M578646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T03:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: what is data cluster?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544630#M578647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Data clusters&lt;/P&gt; are stored in a storage medium with the help of the statement EXPORT ( see: Statements for Data Clusters) . This is achieved using the different variations of the addition medium. These are as follows:&lt;BR /&gt;&lt;BR /&gt;· DATA BUFFER xstr for storage in a byte string xstr&lt;BR /&gt;&lt;BR /&gt;· INTERNAL TABLE itab for storage in an internal table itab (Standard table)&lt;BR /&gt;&lt;BR /&gt;· MEMORY ID id for storage under the name id in the ABAP Memory &lt;BR /&gt;&lt;BR /&gt;· DATABASE dbtab ... ID id for storage under the name id in a database table in the ABAP Dictionary &lt;BR /&gt;&lt;BR /&gt;· SHARED MEMORY dbtab ... ID id and SHARED BUFFER dbtab ... ID id for storage under the name id in the cross-transaction application buffer of the applications server's shared memory.&lt;BR /&gt;&lt;BR /&gt;In the following you will learn more about the temporary storage of data clusters in ABAP memory and shared memory, as well as permanent storage in databanks. You can find detailed information about the different storage media in the keyword documentation. &lt;BR /&gt;&lt;B&gt;&lt;P&gt;&lt;BR /&gt;ABAP Memory&lt;/P&gt;&lt;/B&gt;&lt;BR /&gt;ABAP memory is a memory area within the internal session (roll area) of an ABAP program and any other program called from it using CALL TRANSACTION or SUBMIT. &lt;BR /&gt;&lt;BR /&gt;ABAP memory is independent of the ABAP program or program module from which it was generated. In other words, an object saved in ABAP memory can be read from any other ABAP program in the same call chain. ABAP memory is not the same as the cross-transaction global SAP memory. For further information, refer to Passing Data Between Programs.&lt;BR /&gt;&lt;BR /&gt;This allows you to pass data from one module to another over several levels of the program hierarchy. For example, you can pass data&lt;BR /&gt;&lt;BR /&gt;· from executable programs that have been called using SUBMIT&lt;BR /&gt;&lt;BR /&gt;· From a transaction to an executable program.&lt;BR /&gt;&lt;BR /&gt;· Between dialog modules.&lt;BR /&gt;&lt;BR /&gt;· From a program to a function module.&lt;BR /&gt;&lt;BR /&gt;and so on.&lt;BR /&gt;&lt;BR /&gt;The contents of the memory are released when you leave the transaction.&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;P&gt;Database Tables&lt;/P&gt;&lt;/B&gt;&lt;BR /&gt;You can store data clusters in databases in the ABAP Dictionary. In order to do so, you must create databank tables with a special structure. SAP provides a template databank table called INDX, which you can copy and modify. This is why we also make reference to INDX type tables (see the keyword documentation).&lt;BR /&gt;&lt;BR /&gt;This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available system-wide to every user. To read these objects from the database successfully, you must know their data types.&lt;BR /&gt;&lt;BR /&gt;You can use INDX-type database tables to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the data cluster, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerably reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list. &lt;BR /&gt;&lt;BR /&gt;Although INDX type tables are normal databank tables from the ABAP Dictionary, you should only use them in conjunction with the special statements for data clusters. Only in exceptional cases, for example in order to delete many data clusters from one area with a single statement, can you use Open SQL statements. In order to do this you must have a good working knowledge of the structure of INDX type tables and it is recommended that the table and its contents first be checked for different application cases using the data browser of the ABAP Workbench (transaction SE16).Although it is possible to access an INDX-type database using SQL statements, it is only possible to interpret the structure of the data cluster using ABAP statements.&lt;BR /&gt;&lt;B&gt;&lt;P&gt;&lt;BR /&gt;Cross Transaction Application Buffer&lt;/P&gt;&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The cross transaction application buffer is a storage area on an application server which all ABAP programs of the SAP system running on the same applications server can access. Data clusters in the cross transaction application buffer are exactly the same as data clusters that are organized in databank tables. Here we will refer to the databank table  dbtab. The data are not stored in the databank table itself but in a table with a corresponding set up. Therefore the databank table dbtab must also be an INDX type (see keyword documentation). The structure of this table is then copied for the storage of the cluster in the buffer. This gives you the possibility to store your own administrative information in every cluster in the buffer and import it again as necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The difference between the application buffers SHARED MEMORY and SHARED BUFFER lies in how the system reacts when the storage limit is reached (see Keyword documentation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;reward  points if it is usefull .......&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544630#M578647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T04:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: what is data cluster?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544631#M578648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following illustration shows the schematic structure of a data cluster in the storage medium. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Administration info and Packed data&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;A data cluster is made up of different administration information, which varies depending on the storage medium, and a data area, which contains the compressed data objects.&lt;BR /&gt;&lt;BR /&gt;The following storage media exist:&lt;BR /&gt;&lt;BR /&gt;· Byte String&lt;BR /&gt;&lt;BR /&gt;· Internal Table&lt;BR /&gt;&lt;BR /&gt;· ABAP Memory&lt;BR /&gt;&lt;BR /&gt;· Database Tables&lt;BR /&gt;&lt;BR /&gt;· Cross Transaction Application Buffer&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;P&gt;To store and read data clusters, ABAP offers the following statements&lt;/P&gt;&lt;/B&gt;:&lt;BR /&gt;&lt;BR /&gt;· EXPORT parameter list TO medium &lt;BR /&gt;&lt;BR /&gt;· IMPORT parameter list FROM medium &lt;BR /&gt;&lt;BR /&gt;The data cluster is defined with help of a parameter list parameter list, (see keyword documentation), and specifies the Storage Medium in medium.&lt;BR /&gt;&lt;BR /&gt;You can write a directory of the data objects of a data cluster to an internal table using the statement IMPORT DIRECTORY.. The data cluster was stored in a database table using EXPORT. &lt;BR /&gt;&lt;BR /&gt;To delete data clusters, you can use the following statements:&lt;BR /&gt;&lt;BR /&gt;· FREE MEMORY deletes all data cluster from the ABAP memory&lt;BR /&gt;&lt;BR /&gt;· DELETE FROM ... ID id deletes a data cluster with the identification id, which was stored in the ABAP memory of a database table, or in an application buffer of an application server.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;P&gt;Reward pts if found usefull:)&lt;/P&gt;&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544631#M578648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T04:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: what is data cluster?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544632#M578649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check out the link below it might help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;please reward points if the information is helpful to you&lt;/STRONG&gt;**************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544632#M578649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T04:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: what is data cluster?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544633#M578650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have assigned points thanxs a lot for the quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;P&gt;hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-data-cluster/m-p/2544633#M578650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T04:27:04Z</dc:date>
    </item>
  </channel>
</rss>

