<?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 Write payroll Program in HR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137921#M113713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have assigned to write a program, which reads the payroll data on the basis of screen input date. I know we have to incorporate HR cluster PCL1 and PCL2 but I remember there&amp;#146;re some macros as well as we have to includes some of SAP standard includes which store the information about cluster and also have the result table information ( RU ) with different wage types. Can some body mail me the code or step how to start program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2006 23:11:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-12T23:11:49Z</dc:date>
    <item>
      <title>Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137921#M113713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have assigned to write a program, which reads the payroll data on the basis of screen input date. I know we have to incorporate HR cluster PCL1 and PCL2 but I remember there&amp;#146;re some macros as well as we have to includes some of SAP standard includes which store the information about cluster and also have the result table information ( RU ) with different wage types. Can some body mail me the code or step how to start program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:11:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137921#M113713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137922#M113714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the sample program:  The logical database used for this is PNPCE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_payroll_results MESSAGE-ID hrpbsus NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;       LINE-SIZE  130&lt;/P&gt;&lt;P&gt;       LINE-COUNT 65(3) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: pernr,pcl1,            " HR Cluster&lt;/P&gt;&lt;P&gt;           pcl2 .           " HR Cluster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NODES : person, peras.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INFOTYPES: 0006, 0000, 0001, 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Clusters,  Buffers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;INCLUDE rpc2cd09.           " cluster CD DATA-Defenition&lt;/P&gt;&lt;P&gt;INCLUDE rpc2ca00.           " cluster CA DATA-Defenition&lt;/P&gt;&lt;P&gt;INCLUDE rpc2ruu0.           " cluster RU DATA-Defenition&lt;/P&gt;&lt;P&gt;INCLUDE rpc2rx09.           " cluster RU DATA-Defenition internat.part&lt;/P&gt;&lt;P&gt;INCLUDE rpppxd00.           " DATA definition 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;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_datatab OCCURS 0,&lt;/P&gt;&lt;P&gt;       name(32)         TYPE c,                  " Employee Name&lt;/P&gt;&lt;P&gt;       pernr            LIKE pernr-pernr,        " Employee Number&lt;/P&gt;&lt;P&gt;       pay_period(7)    TYPE c,                  " Pay Period&lt;/P&gt;&lt;P&gt;       pay_srt_date(10) TYPE c,                  " PayPeriod Start Date&lt;/P&gt;&lt;P&gt;       pay_end_date(10) TYPE c,                  " PayPeriod End Date&lt;/P&gt;&lt;P&gt;       cent_value(2)    TYPE p,                  " Actual Cent value&lt;/P&gt;&lt;P&gt;       hours_period(3)  TYPE p DECIMALS 2,       " Hours Per Period&lt;/P&gt;&lt;P&gt;       amount(4)        TYPE p DECIMALS 2,       " Calculated Amount&lt;/P&gt;&lt;P&gt;      END OF i_datatab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET peras.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; rp_provide_from_last p0006 '1' pn-begda pn-endda.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  rp_provide_from_last p0000 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0001 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0002 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK pernr-pernr IN pnppernr.    " Checking Employee Number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE p0002-vorna TO i_datatab-name.&lt;/P&gt;&lt;P&gt;  MOVE pernr-pernr TO i_datatab-pernr.&lt;/P&gt;&lt;P&gt;  PERFORM pay_results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND i_datatab.&lt;/P&gt;&lt;P&gt;  CLEAR i_datatab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  pay_results&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      text&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&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;FORM pay_results .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_tabix TYPE sy-tabix.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reading Payroll Cluster and getting the Payroll results&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  cd-key-pernr = pernr-pernr.&lt;/P&gt;&lt;P&gt;  rp-imp-c2-cu.&lt;/P&gt;&lt;P&gt;  IF rp-imp-cd-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   LOOP AT rgdir where srtza = 'A' and fpend between&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                       pn-begda and pn-endda.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SORT rgdir BY srtza seqnr DESCENDING.&lt;/P&gt;&lt;P&gt;    LOOP AT rgdir WHERE srtza = 'A'.&lt;/P&gt;&lt;P&gt;      l_tabix = l_tabix + 1.&lt;/P&gt;&lt;P&gt;      IF l_tabix &amp;gt; 2.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      rx-key-pernr = pernr-pernr.&lt;/P&gt;&lt;P&gt;      UNPACK rgdir-seqnr TO rx-key-seqno.&lt;/P&gt;&lt;P&gt;      rp-imp-c2-ru.&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT rt.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CONCATENATE rgdir-fpper&lt;EM&gt;4(2) rgdir-fpper&lt;/EM&gt;0(4)&lt;/P&gt;&lt;P&gt;                  INTO i_datatab-pay_period SEPARATED BY space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE rgdir-fpbeg TO i_datatab-pay_srt_date.&lt;/P&gt;&lt;P&gt;      MOVE rgdir-fpend TO i_datatab-pay_end_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i_datatab-amount =&lt;/P&gt;&lt;P&gt;      ( i_datatab-cent_value * i_datatab-hours_period ) / 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&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.                    " pay_results&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;  LOOP AT i_datatab.&lt;/P&gt;&lt;P&gt;    WRITE:/ i_datatab-name,&lt;/P&gt;&lt;P&gt;            i_datatab-pernr,&lt;/P&gt;&lt;P&gt;            i_datatab-pay_period,&lt;/P&gt;&lt;P&gt;            i_datatab-pay_srt_date,&lt;/P&gt;&lt;P&gt;            i_datatab-pay_end_date.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;Please close the issue with appropriate points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137922#M113714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137923#M113715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suleman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is a sample.. this one reads the Co code from WPBP.. but in the RGDIR loop all the internal tables liek RT&amp;lt;CRT&amp;lt;BT&amp;lt;TCRT etc are available for evaluation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zppayresult.
.
data:  t_rgdir          like pc261 occurs 0 with header line.
include: rpcccd09,                      "constants for cluster CD/CU
         rpc2rx00,                      "Definition cluster RX (I)
         rpppxd00,                      "Buffer definition (I)
         rpc2ruu0.                      "US cluster

data: begin of common part buffer.
include: rpppxd10.                      "Buffer definition (II)
data: end  of common part buffer.
tables: pcl1, pcl2.
include rpppxm00.

start-of-selection.
  call function 'CU_READ_RGDIR'
    exporting
      persnr   = '00007519'
    tables
      in_rgdir = t_rgdir.
  if sy-subrc eq 0.
    loop at t_rgdir where seqnr = '00057'.
      rx-key-pernr = '00007519'.
      unpack t_rgdir-seqnr to rx-key-seqno.
*Import data from PCL2
      rp-imp-c2-ru.
      read table wpbp index 1.
      if sy-subrc eq 0.
        write:/ wpbp-bukrs.
      endif.
    endloop.
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are other ways too like using the GET PAYROLL event in PNP or standard function calls like HR_GET_PAYROLL_RESULTS etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137923#M113715</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-12T23:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137924#M113716</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 have to check program RPCLSTRU and RPCLSTB2 and include the same include as there is in these progs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to import payroll Macro to use is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Standard Payroll Routines and Data Definitions&lt;/P&gt;&lt;P&gt;INCLUDE RPC2CD09.&lt;/P&gt;&lt;P&gt;INCLUDE RPC2RUU0.&lt;/P&gt;&lt;P&gt;INCLUDE RPC2RX09.&lt;/P&gt;&lt;P&gt;INCLUDE RPPPXD00.&lt;/P&gt;&lt;P&gt;INCLUDE RPPPXD10.&lt;/P&gt;&lt;P&gt;INCLUDE RPPPXM00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM IMPORT_PAYROLL_RESULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: MED_AMT LIKE RT-BETRG.&lt;/P&gt;&lt;P&gt; DATA: DAY_AMT LIKE RT-BETRG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TRMAC macro to import US Payroll results from PCL2(RU)&lt;/P&gt;&lt;P&gt; RP-IMP-C2-RU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*check RC&lt;/P&gt;&lt;P&gt; IF RP-IMP-RU-SUBRC = 0.&lt;/P&gt;&lt;P&gt;   IF RU-VERSION-NUMBER NE ORU-VERSION-NUMBER.&lt;/P&gt;&lt;P&gt;     STOP.&lt;/P&gt;&lt;P&gt;     SY-SUBRC = 4.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;     SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt; ELSE.&lt;/P&gt;&lt;P&gt;   SY-SUBRC = 8.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CHECK SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*get $amount from required wagetype in required result table&lt;/P&gt;&lt;P&gt; DATA: CONT_AMNT(15).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT RT.&lt;/P&gt;&lt;P&gt;   CASE RT-LGART.&lt;/P&gt;&lt;P&gt;     WHEN 'XXXX'.&lt;/P&gt;&lt;P&gt;       CONT_AMNT = RT-BETRG.&lt;/P&gt;&lt;P&gt;       C_OUTFL-1ST_CONT_AMNT = CONT_AMNT+8(7) + C_OUTFL-1ST_CONT_AMNT.&lt;/P&gt;&lt;P&gt;   ENDCASE.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                               " IMPORT_PAYROLL_RESULT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This form is used here in the form that reads the different payrolls:&lt;/P&gt;&lt;P&gt;FORM GET_RGDIR_CD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CD-KEY-PERNR = PERNR-PERNR.&lt;/P&gt;&lt;P&gt; SY-SUBRC     = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*call TRMAC macro to retrieve cluster directory&lt;/P&gt;&lt;P&gt; RP-IMP-C2-CU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*look for actual result&lt;/P&gt;&lt;P&gt; LOOP AT RGDIR WHERE FPBEG LE PN-ENDDA&lt;/P&gt;&lt;P&gt;                 AND FPEND GE PN-BEGDA&lt;/P&gt;&lt;P&gt;                 AND SRTZA =  'A'&lt;/P&gt;&lt;P&gt;                 AND VOID  = SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   MOVE PERNR-PERNR   TO RX-KEY-PERNR.&lt;/P&gt;&lt;P&gt;   UNPACK RGDIR-SEQNR TO RX-KEY-SEQNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   PERFORM IMPORT_PAYROLL_RESULT.&lt;/P&gt;&lt;P&gt;   CLEAR: RX-KEY-PERNR,&lt;/P&gt;&lt;P&gt;          RX-KEY-SEQNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                               " GET_RGDIR_CD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RP-IMP-C2-RU to import the payroll of the cluster RU BUT Pay attention !!! RGDIR contains&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:26:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137924#M113716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137925#M113717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Guys....!!!!&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137925#M113717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Write payroll Program in HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137926#M113718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problm you're welcome&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:30:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-payroll-program-in-hr/m-p/1137926#M113718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:30:24Z</dc:date>
    </item>
  </channel>
</rss>

