<?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: Error during Infotype Update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145766#M116090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...i am having the same problem with rajesh, im encountering error Personnel not yet assigned. The personnel number i am trying to create is externally assigned. Your reply to this thread will be of great help. Thanks guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*shara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2009 09:37:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-14T09:37:55Z</dc:date>
    <item>
      <title>Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145757#M116081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello! &lt;/P&gt;&lt;P&gt;I am working with an Inbound interface, which has to update new personnel number into intotypes PA0000, PA0001, PA0002, PA0006 &amp;amp; PA0008. To update i am using 'HR_INFOTYPE_OPERATION' function module . When assumed Personnel number is to be created, this Function Module is throwing an error 'Personnel Number not yet assigned', &lt;/P&gt;&lt;P&gt;I am giving the personnel number within the external number range. &lt;/P&gt;&lt;P&gt;Now I need to know is there any fuctionality associated with assigning the personnel number, if so how,......... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 11:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145757#M116081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T11:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145758#M116082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;  first make sure that the employee is hired into the system, i.e., hire the employee using the actions infotype&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 11:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145758#M116082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T11:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145759#M116083</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;Check this sample code and kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants: c_ins1 TYPE actio VALUE 'INS',&lt;/P&gt;&lt;P&gt;LOOP AT l_i_p0015 INTO l_wa_p0015.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ENQUEUE_EPPRELE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;pernr = l_wa_p0015-pernr&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;foreign_lock = 1&lt;/P&gt;&lt;P&gt;system_failure = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_INFOTYPE_OPERATION'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;INFTY = c_0015&lt;/P&gt;&lt;P&gt;NUMBER = l_wa_p0015-pernr&lt;/P&gt;&lt;P&gt;SUBTYPE = l_wa_p0015-subty&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OBJECTID =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LOCKINDICATOR =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;VALIDITYEND = l_wa_p0015-begda&lt;/P&gt;&lt;P&gt;VALIDITYBEGIN = l_wa_p0015-endda&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RECORDNUMBER =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;RECORD = l_wa_p0015&lt;/P&gt;&lt;P&gt;OPERATION = c_ins1&lt;/P&gt;&lt;P&gt;TCLAS = c_a&lt;/P&gt;&lt;P&gt;DIALOG_MODE = '0'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NOCOMMIT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;VIEW_IDENTIFIER =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SECONDARY_RECORD =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;RETURN = l_i_return .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;KEY =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;To dequeue the selected employee&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'DEQUEUE_EPPRELE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;pernr = l_wa_p0015-pernr.&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, 08 Feb 2006 11:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145759#M116083</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-08T11:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145760#M116084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First make sure that the PERNR exists in PA0000 &amp;amp; PA0001&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 11:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145760#M116084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T11:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145761#M116085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. 'Personnel Number not yet assigned', &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This FM is &lt;/P&gt;&lt;P&gt;  for editing/inserting&lt;/P&gt;&lt;P&gt;  INFOTYPE DATA &lt;/P&gt;&lt;P&gt;  (and not creating any new employee)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145761#M116085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T12:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145762#M116086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit!&lt;/P&gt;&lt;P&gt;I think you understood my requirement, i need to create an Employee through Function Module, If this function module doesnt do that, can you please suggest me the correct function module through which i can create an Employee,&lt;/P&gt;&lt;P&gt;Points will be awarded for the right suggestion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 14:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145762#M116086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T14:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145763#M116087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to create an Employee we need to go thru PA40.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 14:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145763#M116087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T14:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145764#M116088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I cannot use PA40, coz i want it for Idoc, i also saw that, when employee is created in PA30 for actions, its also getting updated in PA0003,&lt;/P&gt;&lt;P&gt;HR_INFOTYPE_OPERATION does check in PA0003, so first employee should be in PA0003, how to go with this &lt;/P&gt;&lt;P&gt;I also want to know will function module  HR_MAINTAIN_MASTERDATA can create employee, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope guys you could give some solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 11:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145764#M116088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T11:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145765#M116089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HR_MAINTAIN_MASTERDATA can be used to create a record if&lt;/P&gt;&lt;P&gt;a PERNR already exists.&lt;/P&gt;&lt;P&gt;RPLAPL00 uses this FM.&lt;/P&gt;&lt;P&gt;FM ZHRWPC_PCR_SP_PA30 also uses this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srinivas Reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 11:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145765#M116089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T11:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error during Infotype Update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145766#M116090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...i am having the same problem with rajesh, im encountering error Personnel not yet assigned. The personnel number i am trying to create is externally assigned. Your reply to this thread will be of great help. Thanks guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*shara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 09:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-infotype-update/m-p/1145766#M116090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T09:37:55Z</dc:date>
    </item>
  </channel>
</rss>

