<?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 for reading data from cluster tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217624#M475677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a cluster table named RT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have to get data from htis table having infotypes /3f1,/3f2,/3f3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are the condition types for getting pf amount for an employee&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have never worked on cluster tables so can anyone please guide me how to go about it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 08:50:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T08:50:44Z</dc:date>
    <item>
      <title>for reading data from cluster tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217624#M475677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a cluster table named RT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have to get data from htis table having infotypes /3f1,/3f2,/3f3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are the condition types for getting pf amount for an employee&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have never worked on cluster tables so can anyone please guide me how to go about it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217624#M475677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T08:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: for reading data from cluster tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217625#M475678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is a sample code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Subroutine to get BSIS data(G/L Accounts)&lt;/P&gt;&lt;P&gt;  PERFORM GET_BSIS_DATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;**Subroutine to get BSAS data(G/L Accounts (Cleared Item)&lt;/P&gt;&lt;P&gt;  PERFORM GET_BSAS_DATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Proceed only if data found&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CHECK GV_NODATA_FLG IS INITIAL.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;**Subroutine to get BKPF data(Accounting Document Header)&lt;/P&gt;&lt;P&gt;  PERFORM GET_BKPF_DATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;**Subroutine to get BSEG data(Accounting Document Segment)&lt;/P&gt;&lt;P&gt;  PERFORM GET_BSEG_DATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM GET_BSIS_DATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CLEAR   IT_GLACCOUNTS.&lt;/P&gt;&lt;P&gt;  REFRESH IT_GLACCOUNTS.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  SELECT BUKRS&lt;/P&gt;&lt;P&gt;         GJAHR&lt;/P&gt;&lt;P&gt;         BELNR&lt;/P&gt;&lt;P&gt;      FROM BSIS INTO TABLE IT_GLACCOUNTS&lt;/P&gt;&lt;P&gt;         WHERE BUKRS IN S_BUKRS     AND&lt;/P&gt;&lt;P&gt;             ( HKONT IN S_HKT_IC    OR&lt;/P&gt;&lt;P&gt;               HKONT IN S_HKT_TX )  AND&lt;/P&gt;&lt;P&gt;               BELNR IN S_BELNR     AND&lt;/P&gt;&lt;P&gt;               BUDAT IN S_BUDAT .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ENDFORM.                    " GET_BSIS_DATA&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM GET_BSEG_DATA.&lt;/P&gt;&lt;P&gt;  CLEAR IT_BSEG.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  IF NOT IT_GLACCOUNTS[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT BUKRS&lt;/P&gt;&lt;P&gt;           BELNR&lt;/P&gt;&lt;P&gt;           GJAHR&lt;/P&gt;&lt;P&gt;           BUZEI&lt;/P&gt;&lt;P&gt;           SHKZG&lt;/P&gt;&lt;P&gt;           MWSKZ&lt;/P&gt;&lt;P&gt;           DMBTR&lt;/P&gt;&lt;P&gt;           KOSTL&lt;/P&gt;&lt;P&gt;           AUFNR&lt;/P&gt;&lt;P&gt;           XAUTO&lt;/P&gt;&lt;P&gt;           HKONT&lt;/P&gt;&lt;P&gt;           PROJK&lt;/P&gt;&lt;P&gt;           XBILK&lt;/P&gt;&lt;P&gt;        FROM BSEG INTO CORRESPONDING FIELDS OF TABLE IT_BSEG&lt;/P&gt;&lt;P&gt;            FOR ALL ENTRIES IN IT_GLACCOUNTS&lt;/P&gt;&lt;P&gt;            WHERE BUKRS = IT_GLACCOUNTS-BUKRS AND&lt;/P&gt;&lt;P&gt;                  BELNR = IT_GLACCOUNTS-BELNR AND&lt;/P&gt;&lt;P&gt;                  GJAHR = IT_GLACCOUNTS-GJAHR.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ENDIF.                    "IF NOT IT_BKPF[] IS INITIAL&lt;/P&gt;&lt;P&gt;ENDFORM.                    " GET_BSEG_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not the query that you have asked for ... but still may help you ... in selecting the data from the cluster table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jayant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:53:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217625#M475678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T08:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: for reading data from cluster tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217626#M475679</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 this link &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/the-different-types-of-sap-tables.htm" target="test_blank"&gt;http://www.sap-img.com/abap/the-different-types-of-sap-tables.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 08:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/for-reading-data-from-cluster-tables/m-p/2217626#M475679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T08:56:58Z</dc:date>
    </item>
  </channel>
</rss>

