<?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: about clusters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857461#M669925</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;CLUSTER:&lt;/P&gt;&lt;P&gt;set of data objects.&lt;/P&gt;&lt;P&gt;Elementary fields , field strings and internal tables etc. will come under data objects.&lt;/P&gt;&lt;P&gt;You can store data clusters in ABAP/4 memory for short time and in database for longer time.&lt;/P&gt;&lt;P&gt;To write data objects from ABAP/4 program to ABAP/4 memory,the following statement is used.&lt;/P&gt;&lt;P&gt;Export f1 &lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;to memory id 'table'.&lt;/P&gt;&lt;P&gt;Import f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;from memory id 'table'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Free memory id 'table'...Cluster will be deleted from the memory.&lt;/P&gt;&lt;P&gt;These cluster databases come into picture to keep the information&lt;/P&gt;&lt;P&gt;relating to a company more secure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. Payroll, time related data.&lt;/P&gt;&lt;P&gt;e.g. cluster database tables PCL1, PCL2, PCL3 and PCL4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCL1 is the database for HR application areas.It contains information&lt;/P&gt;&lt;P&gt;regarding the time recording.&lt;/P&gt;&lt;P&gt;PCL2 contains information regarding payroll accounting.&lt;/P&gt;&lt;P&gt;PCL3 contains applicant data.&lt;/P&gt;&lt;P&gt;PCL4 contains change documents for HR master data.&lt;/P&gt;&lt;P&gt;Cluster rx contains the payroll results for country x according to table&lt;/P&gt;&lt;P&gt;T500l.&lt;/P&gt;&lt;P&gt;The clusters can be called from macros.&lt;/P&gt;&lt;P&gt;RP-IMP-Cn-xx ( n = 1,2,3,4 and xx is cluster)&lt;/P&gt;&lt;P&gt;When macro is used to import data,it is not directly get from database table PCL,&lt;/P&gt;&lt;P&gt;instead it checks for the buffer directory whether it contains it in main memory.&lt;/P&gt;&lt;P&gt;if it is there it takes it from main memory..otherwise it reads from PCL to main&lt;/P&gt;&lt;P&gt;memory and from there to the report.&lt;/P&gt;&lt;P&gt;Standard import programs follow the naming convention RPCLSTxx..xx is cluster.&lt;/P&gt;&lt;P&gt;RP-EXP-Cn-xx ( n = 1,2,3,4 and xx is cluster)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2007 06:52:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-27T06:52:54Z</dc:date>
    <item>
      <title>about clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857459#M669923</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;could u pls explain me about clusters?&lt;/P&gt;&lt;P&gt;what is clusters?&lt;/P&gt;&lt;P&gt;and how the data will store in clusters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857459#M669923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: about clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857460#M669924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Devender,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are feww definitions. Hope it helps your understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; Cluster table        &amp;lt;/b&amp;gt;                                                                                &lt;/P&gt;&lt;P&gt;Cluster tables contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record  in this table type. This permits object-by-object storage or object-by-object access. In order to combine tables in clusters, at least  parts of the keys must agree. Several cluster tables are stored in one       corresponding table on the database.                                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;What is a table cluster?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;     A table cluster combines several logical tables in the ABAP/4 Dictionary. Several logical rows from different cluster tables are brought together in a single physical record. The records from the cluster tables&lt;/P&gt;&lt;P&gt; assigned to a cluster are thus stored in a single common table in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;What are DATA CLUSTERS ?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;You 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. You 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 you can also access cluster databases using SQL statements, only ABAP/4 statements are able to decode the structure of the stored data cluster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f0b7446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f0b7446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest to do search in SDN with key - 'Cluster'&lt;/P&gt;&lt;P&gt;Will get a lot of helpful discussions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if this helps.&lt;/P&gt;&lt;P&gt;Manish&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:50:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857460#M669924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: about clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857461#M669925</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;CLUSTER:&lt;/P&gt;&lt;P&gt;set of data objects.&lt;/P&gt;&lt;P&gt;Elementary fields , field strings and internal tables etc. will come under data objects.&lt;/P&gt;&lt;P&gt;You can store data clusters in ABAP/4 memory for short time and in database for longer time.&lt;/P&gt;&lt;P&gt;To write data objects from ABAP/4 program to ABAP/4 memory,the following statement is used.&lt;/P&gt;&lt;P&gt;Export f1 &lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;to memory id 'table'.&lt;/P&gt;&lt;P&gt;Import f1&lt;/P&gt;&lt;P&gt;f2&lt;/P&gt;&lt;P&gt;from memory id 'table'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Free memory id 'table'...Cluster will be deleted from the memory.&lt;/P&gt;&lt;P&gt;These cluster databases come into picture to keep the information&lt;/P&gt;&lt;P&gt;relating to a company more secure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. Payroll, time related data.&lt;/P&gt;&lt;P&gt;e.g. cluster database tables PCL1, PCL2, PCL3 and PCL4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PCL1 is the database for HR application areas.It contains information&lt;/P&gt;&lt;P&gt;regarding the time recording.&lt;/P&gt;&lt;P&gt;PCL2 contains information regarding payroll accounting.&lt;/P&gt;&lt;P&gt;PCL3 contains applicant data.&lt;/P&gt;&lt;P&gt;PCL4 contains change documents for HR master data.&lt;/P&gt;&lt;P&gt;Cluster rx contains the payroll results for country x according to table&lt;/P&gt;&lt;P&gt;T500l.&lt;/P&gt;&lt;P&gt;The clusters can be called from macros.&lt;/P&gt;&lt;P&gt;RP-IMP-Cn-xx ( n = 1,2,3,4 and xx is cluster)&lt;/P&gt;&lt;P&gt;When macro is used to import data,it is not directly get from database table PCL,&lt;/P&gt;&lt;P&gt;instead it checks for the buffer directory whether it contains it in main memory.&lt;/P&gt;&lt;P&gt;if it is there it takes it from main memory..otherwise it reads from PCL to main&lt;/P&gt;&lt;P&gt;memory and from there to the report.&lt;/P&gt;&lt;P&gt;Standard import programs follow the naming convention RPCLSTxx..xx is cluster.&lt;/P&gt;&lt;P&gt;RP-EXP-Cn-xx ( n = 1,2,3,4 and xx is cluster)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:52:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857461#M669925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: about clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857462#M669926</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;Go the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/ABAP_tutorial.html" target="test_blank"&gt;http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/ABAP_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on ABAP Programming Complete Guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download into your local disk in pdf format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto page no: 361.  You will get full details about Clusters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-clusters/m-p/2857462#M669926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:56:34Z</dc:date>
    </item>
  </channel>
</rss>

