<?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 Cluster Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741746#M637080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out if any FM is there otherwise use Select and try to pass all the Keys in where Clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Sep 2007 07:05:50 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2007-09-11T07:05:50Z</dc:date>
    <item>
      <title>Reading Cluster Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741745#M637079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to read Cluster Tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741745#M637079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Cluster Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741746#M637080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out if any FM is there otherwise use Select and try to pass all the Keys in where Clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 07:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741746#M637080</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-09-11T07:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Cluster Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741747#M637081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think u can using FM "HR_TIME_RESULTS_GET" to read data from Table Cluster B2. Here the sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: saldo like pc2b5 occurs 0 with header line.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    call function 'HR_TIME_RESULTS_GET'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        get_pernr             = pernr&lt;/P&gt;&lt;P&gt;        get_pabrj             = pabrj&lt;/P&gt;&lt;P&gt;        get_pabrp             = pabrp&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        get_saldo             = saldo&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;        no_period_specified   = 1&lt;/P&gt;&lt;P&gt;        wrong_cluster_version = 2&lt;/P&gt;&lt;P&gt;        no_read_authority     = 3&lt;/P&gt;&lt;P&gt;        cluster_archived      = 4&lt;/P&gt;&lt;P&gt;        technical_error       = 5&lt;/P&gt;&lt;P&gt;        others                = 6.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 07:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741747#M637081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T07:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Cluster Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741748#M637082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample program&lt;/P&gt;&lt;P&gt;Import and export to database is used in two programs and not in the same program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZPROGRAM1.&lt;/P&gt;&lt;P&gt;tables : indx.&lt;/P&gt;&lt;P&gt;Data : SALDO type i,&lt;/P&gt;&lt;P&gt;indxkey LIKE indx-srtfd VALUE 'ZAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;indx-aedat = sy-datum.&lt;/P&gt;&lt;P&gt;indx-usera = sy-uname.&lt;/P&gt;&lt;P&gt;indx-pgmid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT SALDO TO DATABASE indx(zc) ID indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In another program, &lt;/P&gt;&lt;P&gt;ZPROGRAM2.&lt;/P&gt;&lt;P&gt;tables : indx.&lt;/P&gt;&lt;P&gt;Data : SALDO type i,&lt;/P&gt;&lt;P&gt;indxkey LIKE indx-srtfd VALUE 'ZAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;indx-aedat = sy-datum.&lt;/P&gt;&lt;P&gt;indx-usera = sy-uname.&lt;/P&gt;&lt;P&gt;indx-pgmid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT SALDO FROM DATABASE indx(zc) ID indxkey.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 07:08:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-cluster-tables/m-p/2741748#M637082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T07:08:45Z</dc:date>
    </item>
  </channel>
</rss>

