<?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: reading clusters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383904#M529544</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 tables combine the data from several tables with identical (or almost identical) keys into one physical record on the database.&lt;/P&gt;&lt;P&gt;Data is written to a database in compressed form. &lt;/P&gt;&lt;P&gt;Retrieval of data is very fast if the primary key is known. &lt;/P&gt;&lt;P&gt;Cluster tables are defined in the data dictionary as transparent tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Special language elements EXPORT TO DATABASE, IMPORT TO DATABASE and DELETE  FROM DATABASE are used to process data in the cluster tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://fuller.mit.edu/hr/cluster_tables.html" target="test_blank"&gt;http://fuller.mit.edu/hr/cluster_tables.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 06:21:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T06:21:13Z</dc:date>
    <item>
      <title>reading clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383903#M529543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using payroll clusters.&lt;/P&gt;&lt;P&gt;how can i read  ' wpbp ' cluster.&lt;/P&gt;&lt;P&gt;what macreo shud i use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383903#M529543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: reading clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383904#M529544</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 tables combine the data from several tables with identical (or almost identical) keys into one physical record on the database.&lt;/P&gt;&lt;P&gt;Data is written to a database in compressed form. &lt;/P&gt;&lt;P&gt;Retrieval of data is very fast if the primary key is known. &lt;/P&gt;&lt;P&gt;Cluster tables are defined in the data dictionary as transparent tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Special language elements EXPORT TO DATABASE, IMPORT TO DATABASE and DELETE  FROM DATABASE are used to process data in the cluster tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://fuller.mit.edu/hr/cluster_tables.html" target="test_blank"&gt;http://fuller.mit.edu/hr/cluster_tables.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:21:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383904#M529544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: reading clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383905#M529545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nidhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cluster Table in which WPBP is stored is PCL2. You can use the following statement to import data. Note that we cannot fetch data from Cluster tables using Select Statements. Data can be fetched only using Import Statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORT B2-VERSION TO OB2-VERSION
       WPBP
FROM DATABASE PCL2(B2)
ID B2-KEY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report RPCLSTB2 fetches data from WPBP Cluster. You can refer to this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do Reward points if helpfull and close this question as answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383905#M529545</guid>
      <dc:creator>former_member214288</dc:creator>
      <dc:date>2007-06-06T06:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: reading clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383906#M529546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WPBP&lt;/P&gt;&lt;P&gt; Table WPBP contains data on the employee&amp;#146;s work center and basic pay.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Try with macro RP-EXP-C2-B2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383906#M529546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: reading clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383907#M529547</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;You can read the payroll cluster with the logical database PNP. Take a look at Report EXAMPLE_PNP_GET_PAYROLL and it's documentation. It's self-explanatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 07:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-clusters/m-p/2383907#M529547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T07:07:14Z</dc:date>
    </item>
  </channel>
</rss>

