<?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 Enhancing Standard Function Module. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905965#M1597285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have added some custom fields in table HRP5102 which is getting updated from this function module HRRCF_MDL_REG_NAMED_USR_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the enhancement implementation for this but that is not working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( lv_is_consistent eq 'X' ).&lt;/P&gt;&lt;P&gt;        move record-lastname to ls_centraldataperson-lastname.&lt;/P&gt;&lt;P&gt;        move record-firstname to ls_centraldataperson-firstname.&lt;/P&gt;&lt;P&gt;        move record-middlename to ls_centraldataperson-middlename.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Setting the default correspondance language&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        move sy-langu to ls_centraldataperson-correspondlanguage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to add my codes under this IF condition .&lt;/P&gt;&lt;P&gt;so can any body sugget me how i can do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 May 2011 06:15:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-02T06:15:30Z</dc:date>
    <item>
      <title>Enhancing Standard Function Module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905965#M1597285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have added some custom fields in table HRP5102 which is getting updated from this function module HRRCF_MDL_REG_NAMED_USR_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the enhancement implementation for this but that is not working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( lv_is_consistent eq 'X' ).&lt;/P&gt;&lt;P&gt;        move record-lastname to ls_centraldataperson-lastname.&lt;/P&gt;&lt;P&gt;        move record-firstname to ls_centraldataperson-firstname.&lt;/P&gt;&lt;P&gt;        move record-middlename to ls_centraldataperson-middlename.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Setting the default correspondance language&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        move sy-langu to ls_centraldataperson-correspondlanguage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to add my codes under this IF condition .&lt;/P&gt;&lt;P&gt;so can any body sugget me how i can do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 06:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905965#M1597285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-02T06:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancing Standard Function Module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905966#M1597286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Divesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to keep a debug point and check whether it is triggering or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 15:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905966#M1597286</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-05-02T15:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancing Standard Function Module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905967#M1597287</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;The only implicit enhancement options for this function module are (as usual) at the very top and the very bottom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you will be able to use these, if your goal is to update custom fields in ls_centraldataperson before the 'register' method is called. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'top' enhancement is too early (because ls_centraldataperson is not yet declared), and the 'bottom' enhancement is too late (because 'register' has already been called).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, as far as I can tell, it seems you will need a repair! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 01:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancing-standard-function-module/m-p/7905967#M1597287</guid>
      <dc:creator>paul_bakker2</dc:creator>
      <dc:date>2011-05-03T01:04:22Z</dc:date>
    </item>
  </channel>
</rss>

