<?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 to find Reference Employee Number (PERNR) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351290#M176044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also try FM &lt;/P&gt;&lt;P&gt;HR_ME_SELECT_REF_PERNR&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jun 2006 19:54:13 GMT</pubDate>
    <dc:creator>former_member181966</dc:creator>
    <dc:date>2006-06-06T19:54:13Z</dc:date>
    <item>
      <title>Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351288#M176042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Is there a FM to get employee's reference PERNR (employee number) in case employee was assigned a new employee number due to inter-company transfer or anyother reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 19:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351288#M176042</guid>
      <dc:creator>former_member445996</dc:creator>
      <dc:date>2006-06-06T19:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351289#M176043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like this ::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr into table emp_tab&lt;/P&gt;&lt;P&gt;         from pa0709&lt;/P&gt;&lt;P&gt;         where personid_ext = employee&lt;/P&gt;&lt;P&gt;         and begda le begda&lt;/P&gt;&lt;P&gt;         and endda ge endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this&amp;#146;ll give you idea!!&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S award the points.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Good luck &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib Khan&lt;/P&gt;&lt;P&gt;"Some are wise and some are otherwise"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 19:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351289#M176043</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-06-06T19:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351290#M176044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also try FM &lt;/P&gt;&lt;P&gt;HR_ME_SELECT_REF_PERNR&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 19:54:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351290#M176044</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-06-06T19:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351291#M176045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Class :CL_HRCCE_PERSON_READER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also see the method ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHOD get_other_pernr.                                                                                &lt;/P&gt;&lt;P&gt;DATA l_personid TYPE personid.                                                                                &lt;/P&gt;&lt;P&gt;CALL METHOD me-&amp;gt;get_personid               &lt;/P&gt;&lt;P&gt;        EXPORTING                                &lt;/P&gt;&lt;P&gt;          p_pernr    = p_pernr                   &lt;/P&gt;&lt;P&gt;        RECEIVING                                &lt;/P&gt;&lt;P&gt;          p_personid = l_personid.               &lt;/P&gt;&lt;P&gt;                                                 &lt;/P&gt;&lt;P&gt;      CALL METHOD me-&amp;gt;get_pernr                  &lt;/P&gt;&lt;P&gt;        EXPORTING                                &lt;/P&gt;&lt;P&gt;          p_personid = l_personid                &lt;/P&gt;&lt;P&gt;        IMPORTING                                &lt;/P&gt;&lt;P&gt;          p_pernr    = p_rpernr.                 &lt;/P&gt;&lt;P&gt;                                                 &lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 20:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351291#M176045</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-06-06T20:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351292#M176046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saquib,&lt;/P&gt;&lt;P&gt;Thanks for the suggestions. Can you please review the names of these objects as none of the mentioned objects (PA0709, HR_ME_SELECT_REF_PERNR, CLHRCCE_PERSON_READER) exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;Aurang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 22:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351292#M176046</guid>
      <dc:creator>former_member445996</dc:creator>
      <dc:date>2006-06-06T22:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351293#M176047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aurang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HR_ME_SELECT_REF_PERNR is a function module &amp;amp; you can test it in SE37.. pass a pERNr &amp;amp; it will you retrun you a Ref Pernr if there is one.. altaernately, you can also use the function module HR_READ_INFOTYPE to read the Infotype 0031 where the Ref pers no is maintained.&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>Tue, 06 Jun 2006 22:14:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351293#M176047</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-06T22:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351294#M176048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Table = PA0709 ( TR.SE11,SE16) &lt;/P&gt;&lt;P&gt;Function module = HR_ME_SELECT_REF_PERNR ( Tr.SE37)&lt;/P&gt;&lt;P&gt;Class = CLHRCCE_PERSON_READER ( TR.SE24)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don`t forget to reward points .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 22:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351294#M176048</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-06-06T22:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351295#M176049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are these objects for a specific release? We are on 4.6C and none of them seem to exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aurang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 23:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351295#M176049</guid>
      <dc:creator>former_member445996</dc:creator>
      <dc:date>2006-06-06T23:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351296#M176050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES.. I guess they are only available from 47 &amp;amp; upward.. in your case, one option would be to do a SELECT on the  Db table PA0031.&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>Tue, 06 Jun 2006 23:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351296#M176050</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-06T23:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to find Reference Employee Number (PERNR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351297#M176051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wanted to make everyone aware, that a select on PA0031 might not give the results that one might expect. Depending on the system configuration, the central person is getting stored in PD Infotype 1001. The function module HR_READ_INFOTYPE is the right way to go in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just thought I want to share this, because I wondered PA0031 being empty although infotype 0031 records being present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rolf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 10:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-find-reference-employee-number-pernr/m-p/1351297#M176051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T10:45:01Z</dc:date>
    </item>
  </channel>
</rss>

