<?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: regarding Payroll clusters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802673#M1124465</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai,&lt;/P&gt;&lt;P&gt;Please post your entire code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2008 10:58:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-18T10:58:14Z</dc:date>
    <item>
      <title>regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802669#M1124461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam using includes in top for retrieving the payroll clusters in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE RPC2RX09.              "Data Definition for Cluster RD in PCL2 (Payroll Results for Germany)&lt;/P&gt;&lt;P&gt;INCLUDE RPC2CD09.              "Data, CD-Cluster Directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read of cluster CU. Fill ACT_RGDIR with all entries of a person I used the FM:&lt;/P&gt;&lt;P&gt;FM: CD_RETROCALC_PERIOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i got error like "Form "PCL2_EXP_IMP"" does not exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any way my code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM READ_CLUSTER_CU .&lt;/P&gt;&lt;P&gt;  DATA: v_CALCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CD-KEY-PERNR = PERNR-PERNR.&lt;/P&gt;&lt;P&gt;  RP-IMP-C2-CU.    "Import macro for payroll directory&lt;/P&gt;&lt;P&gt;  IF RP-IMP-CD-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    IF OCD-VERSION-NUMBER NE CD-VERSION-NUMBER.&lt;/P&gt;&lt;P&gt;      PERFORM FILL_ERROR USING PERNR-PERNR&lt;/P&gt;&lt;P&gt;                               '04'&lt;/P&gt;&lt;P&gt;                               'CU'&lt;/P&gt;&lt;P&gt;                               CD-KEY&lt;/P&gt;&lt;P&gt;                               OCD-VERSION-NUMBER&lt;/P&gt;&lt;P&gt;                               CD-VERSION-NUMBER.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      LOOP AT RGDIR.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'CD_RETROCALC_PERIOD'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            ENTRY  = RGDIR&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            CALCD  = v_CALCD&lt;/P&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;            OTHERS = 1.&lt;/P&gt;&lt;P&gt;        IF v_CALCD EQ SPACE.&lt;/P&gt;&lt;P&gt;          MOVE-CORRESPONDING RGDIR TO WA_ACT_RGDIR.&lt;/P&gt;&lt;P&gt;          WA_ACT_RGDIR-PERNR = PERNR-PERNR.&lt;/P&gt;&lt;P&gt;          APPEND WA_PERSON TO I_PERSON.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " READ_CLUSTER_CU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me, what is the wrong..............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802669#M1124461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802670#M1124462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this include also ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include rpppxm00.  " Buffer handling routine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802670#M1124462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802671#M1124463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas..&lt;/P&gt;&lt;P&gt;thank you foe quick reply....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used this also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE rpc2ruu0.                      "Calc, USA&lt;/P&gt;&lt;P&gt;INCLUDE rpc2rx09.                      "Calc, international&lt;/P&gt;&lt;P&gt;INCLUDE rpc2cd09.                      "Data, CD-Cluster Directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; INCLUDES fuer die Pufferung von PCLx                               *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE rpppxd00.                      "Daten PCLx-Puffer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF COMMON PART buffer.&lt;/P&gt;&lt;P&gt;INCLUDE rpppxd10.                      "Daten PCLx-Puffer&lt;/P&gt;&lt;P&gt;DATA: END OF COMMON PART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please......any inputs..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802671#M1124463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802672#M1124464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare the below ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include rpc2cd09.  " Data Definition - CD Cluster&lt;/P&gt;&lt;P&gt;include rpc2ca00.  " Import/Export Macros for Cluster CA&lt;/P&gt;&lt;P&gt;include rpc2ruu0.  " Data Definition for Cluster RU (USA)&lt;/P&gt;&lt;P&gt;include rpc2rx09.  " Cluster RU Data-Definition internat. part&lt;/P&gt;&lt;P&gt;include rpppxd00.  " Data befinition buffer PCL1/PCL2&lt;/P&gt;&lt;P&gt;include rpppxd10.  " Common part buffer PCL1/PCL2&lt;/P&gt;&lt;P&gt;include rpppxm00.  " Buffer handling routine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802672#M1124464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802673#M1124465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai,&lt;/P&gt;&lt;P&gt;Please post your entire code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:58:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802673#M1124465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Payroll clusters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802674#M1124466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Its working. Thank you  Srini Vas. and friends.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 12:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-payroll-clusters/m-p/4802674#M1124466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T12:34:53Z</dc:date>
    </item>
  </channel>
</rss>

