<?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: PCL2 cluster in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306909#M1636176</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friends &lt;/P&gt;&lt;P&gt;i have written the flowing code but it doesn't retrieve any data and i check data for the same period in report  ( PT_CLSTB2 )   &lt;/P&gt;&lt;P&gt; and i found please   check why my code dos't retrieve data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZR_READDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_pernr TYPE PC2B0-pernr.&lt;/P&gt;&lt;P&gt;PARAMETERS p_PABRJ TYPE PC2B0-PABRJ.&lt;/P&gt;&lt;P&gt;PARAMETERS p_PABRP TYPE PC2B0-PABRP.&lt;/P&gt;&lt;P&gt;PARAMETERS p_CLTYP TYPE PC2B0-CLTYP.&lt;/P&gt;&lt;P&gt;PARAMETERS date TYPE  BEGDA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables PCL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include rpc2ZL00.  " This include is explained on web page above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;  perform fill_key.&lt;/P&gt;&lt;P&gt;  PERFORM STAR.&lt;/P&gt;&lt;P&gt;  perform get_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fill_key.&lt;/P&gt;&lt;P&gt;  ZL-KEY-pernr = p_pernr.      "Personnel Number&lt;/P&gt;&lt;P&gt;  ZL-KEY-PABRJ = p_PABRJ. "Payroll Period&lt;/P&gt;&lt;P&gt;  ZL-KEY-PABRP = p_PABRP. "Payroll Year&lt;/P&gt;&lt;P&gt;  ZL-KEY-CLTYP = p_CLTYP.  "Cluster type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " fill_key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form get_data.&lt;/P&gt;&lt;P&gt;  import ZL from database pcl2(ZL) id ZL-KEY.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; loop at ZL.            "ptext is defined in above include&lt;/P&gt;&lt;P&gt;    write: / ZL-LGART.&lt;/P&gt;&lt;P&gt;    write: / ZL-ANZHL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endform.  " get_data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Nov 2011 07:57:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-09T07:57:13Z</dc:date>
    <item>
      <title>PCL2 cluster</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306907#M1636174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear  my friends &lt;/P&gt;&lt;P&gt;i want a sample code to retrive data from ZI table in cluster PCL2 .&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 13:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306907#M1636174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T13:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: PCL2 cluster</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306908#M1636175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohammed ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Check the SAP Standart FM "PYXX_READ_PAYROLL_RESULT"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;İrfan MATAK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 13:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306908#M1636175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T13:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: PCL2 cluster</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306909#M1636176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friends &lt;/P&gt;&lt;P&gt;i have written the flowing code but it doesn't retrieve any data and i check data for the same period in report  ( PT_CLSTB2 )   &lt;/P&gt;&lt;P&gt; and i found please   check why my code dos't retrieve data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZR_READDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_pernr TYPE PC2B0-pernr.&lt;/P&gt;&lt;P&gt;PARAMETERS p_PABRJ TYPE PC2B0-PABRJ.&lt;/P&gt;&lt;P&gt;PARAMETERS p_PABRP TYPE PC2B0-PABRP.&lt;/P&gt;&lt;P&gt;PARAMETERS p_CLTYP TYPE PC2B0-CLTYP.&lt;/P&gt;&lt;P&gt;PARAMETERS date TYPE  BEGDA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables PCL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include rpc2ZL00.  " This include is explained on web page above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;  perform fill_key.&lt;/P&gt;&lt;P&gt;  PERFORM STAR.&lt;/P&gt;&lt;P&gt;  perform get_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fill_key.&lt;/P&gt;&lt;P&gt;  ZL-KEY-pernr = p_pernr.      "Personnel Number&lt;/P&gt;&lt;P&gt;  ZL-KEY-PABRJ = p_PABRJ. "Payroll Period&lt;/P&gt;&lt;P&gt;  ZL-KEY-PABRP = p_PABRP. "Payroll Year&lt;/P&gt;&lt;P&gt;  ZL-KEY-CLTYP = p_CLTYP.  "Cluster type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " fill_key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form get_data.&lt;/P&gt;&lt;P&gt;  import ZL from database pcl2(ZL) id ZL-KEY.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; loop at ZL.            "ptext is defined in above include&lt;/P&gt;&lt;P&gt;    write: / ZL-LGART.&lt;/P&gt;&lt;P&gt;    write: / ZL-ANZHL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endform.  " get_data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 07:57:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pcl2-cluster/m-p/8306909#M1636176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-09T07:57:13Z</dc:date>
    </item>
  </channel>
</rss>

