<?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: Function Module PYXX_READ_PAYROLL_RESULT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964343#M1157281</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use as below .. need to get from the inter-rt(for RT .... similarly for others) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :       W_RT TYPE PC207.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT PAYROLL_RESULT-INTER-RT INTO W_RT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE W_RT-LGART.&lt;/P&gt;&lt;P&gt;      WHEN '/101'.&lt;/P&gt;&lt;P&gt;        IT_FINAL-GROSS = W_RT-BETRG.&lt;/P&gt;&lt;P&gt;      WHEN '/560'.&lt;/P&gt;&lt;P&gt;       IT_FINAL-NET = W_RT-BETRG.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Dec 2008 13:13:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-24T13:13:15Z</dc:date>
    <item>
      <title>Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964339#M1157277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi GURU ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am going to run this Function Module "PYXX_READ_PAYROLL_RESULT".&lt;/P&gt;&lt;P&gt;I have passed &lt;/P&gt;&lt;P&gt;CLUSTERID                                 IN&lt;/P&gt;&lt;P&gt;EMPLOYEENUMBER                  00000007&lt;/P&gt;&lt;P&gt;SEQUENCENUMBER                  00001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will give errorr -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************************************************************************&lt;/P&gt;&lt;P&gt; An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt; The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was&lt;/P&gt;&lt;P&gt;  not caught in&lt;/P&gt;&lt;P&gt; procedure "PYXX_READ_PAYROLL_RESULT" "(FUNCTION)", nor was it propagated by a&lt;/P&gt;&lt;P&gt;  RAISING clause.&lt;/P&gt;&lt;P&gt; Since the caller of the procedure could not have anticipated that the&lt;/P&gt;&lt;P&gt; exception would occur, the current program is terminated.&lt;/P&gt;&lt;P&gt; The reason for the exception is:&lt;/P&gt;&lt;P&gt; Call to FORM "IMPORT_RESULT" is incorrect:&lt;/P&gt;&lt;P&gt; The actual parameter no. 2 has a different data type in the&lt;/P&gt;&lt;P&gt; PERFORM than requested for the FORM "IMPORT_RESULT" in program "%_T00E00".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************************************************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anything else I have to pass here .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 12:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964339#M1157277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T12:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964340#M1157278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare your changing parameter (PAYROLL_RESULT) as below &lt;/P&gt;&lt;P&gt;DATA : PAYRESULT TYPE PAY99_RESULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the exporting parameters pass 'X' to &lt;/P&gt;&lt;P&gt;READ_ONLY_INTERNATIONAL ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try to pass CLUSTERID which can be obtained from FM PYXX_GET_RELID_FROM_PERNR ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 12:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964340#M1157278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T12:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964341#M1157279</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; CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;           clusterid                    = 'IN'&lt;/P&gt;&lt;P&gt;           employeenumber               = wa_hrpy_rgdir-pernr&lt;/P&gt;&lt;P&gt;           sequencenumber               = wa_hrpy_rgdir-seqnr&lt;/P&gt;&lt;P&gt;           read_only_international      = 'X'&lt;/P&gt;&lt;P&gt;         CHANGING&lt;/P&gt;&lt;P&gt;           payroll_result               = it_payroll&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;           illegal_isocode_or_clusterid = 1&lt;/P&gt;&lt;P&gt;           error_generating_import      = 2&lt;/P&gt;&lt;P&gt;           import_mismatch_error        = 3&lt;/P&gt;&lt;P&gt;           subpool_dir_full             = 4&lt;/P&gt;&lt;P&gt;           no_read_authority            = 5&lt;/P&gt;&lt;P&gt;           no_record_found              = 6&lt;/P&gt;&lt;P&gt;           versions_do_not_match        = 7&lt;/P&gt;&lt;P&gt;           OTHERS                       = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arjun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 13:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964341#M1157279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T13:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964342#M1157280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is now working , but when I will go for taking the data from PAYRESULT , how can i use the LOOP of this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 13:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964342#M1157280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T13:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964343#M1157281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use as below .. need to get from the inter-rt(for RT .... similarly for others) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :       W_RT TYPE PC207.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT PAYROLL_RESULT-INTER-RT INTO W_RT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE W_RT-LGART.&lt;/P&gt;&lt;P&gt;      WHEN '/101'.&lt;/P&gt;&lt;P&gt;        IT_FINAL-GROSS = W_RT-BETRG.&lt;/P&gt;&lt;P&gt;      WHEN '/560'.&lt;/P&gt;&lt;P&gt;       IT_FINAL-NET = W_RT-BETRG.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 13:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964343#M1157281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T13:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964344#M1157282</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;What is the type of W_RT ????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 13:14:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964344#M1157282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T13:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module PYXX_READ_PAYROLL_RESULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964345#M1157283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SORRY , I GOT THE TYPE FROM UR ANSWER WHICH IS GIVEN BY YOU .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Dec 2008 13:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-pyxx-read-payroll-result/m-p/4964345#M1157283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-24T13:28:41Z</dc:date>
    </item>
  </channel>
</rss>

