<?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: Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125833#M1364517</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;   First step would be to ensure that changing the FM would not effect other programs that are using this FM i see that this FM has been used in some other standard programs too first make sure that change the FM would not effect other program. I would rather suggest you try to use enhancement options in the program rather than using in a shared object.&lt;/P&gt;&lt;P&gt;There are a lot of implicit enhancement options just check if any one of them suits your requirement.&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;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Aug 2009 06:05:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-26T06:05:26Z</dc:date>
    <item>
      <title>Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125831#M1364515</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 am not able to create Enhancement Implementation in Function module &lt;STRONG&gt;CHANGEDOCUMENT_DISPLAY&lt;/STRONG&gt;.It showing message as &lt;/P&gt;&lt;P&gt;&lt;EM&gt;'Object FUGR SCD6 is part of the central basis and therefore cannot be enhanced'&lt;/EM&gt;. Requirement is to hide the three output fileds NAME_FIRST,NAME_LAST and DEPARTMENT in the program &lt;STRONG&gt;RSSCD100&lt;/STRONG&gt;. I tried to create the Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY,Subroutine &lt;STRONG&gt;INIT_FIELDCAT&lt;/STRONG&gt;. Is this can be achieve through Enhancement Implementation or through Access Key or any other way. Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Somi Reddy Satti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Somi R Satti on Aug 26, 2009 7:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 04:19:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125831#M1364515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-26T04:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125832#M1364516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Somi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can do that both the ways i mean by getting access key and Enhancement implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By getting access key u can change that program directly and u can comment that filed that u don't want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But using enhancement Implementation you can add your own code at the start and the end of FORM init_fieldcat -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to use this functionality u can delete the record for the fields u don't want .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this.. &lt;/P&gt;&lt;P&gt;this statement u can add before init_fieldcat ENDFORM. &lt;/P&gt;&lt;P&gt;delete l_tab_fieldcat where  l_tab_fieldcat-ref_fieldname = 'NAME'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u problem will solve.&lt;/P&gt;&lt;P&gt;Any queries revert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanket.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 05:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125832#M1364516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-26T05:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125833#M1364517</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;   First step would be to ensure that changing the FM would not effect other programs that are using this FM i see that this FM has been used in some other standard programs too first make sure that change the FM would not effect other program. I would rather suggest you try to use enhancement options in the program rather than using in a shared object.&lt;/P&gt;&lt;P&gt;There are a lot of implicit enhancement options just check if any one of them suits your requirement.&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;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 06:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125833#M1364517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-26T06:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125834#M1364518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Click on 6th button(enhance source code) inside the Function module.&lt;/P&gt;&lt;P&gt;Then go to EDIT-&amp;gt;ENHANCEMENTOPERATIONS-&amp;gt;SHOWIMPLICITENHANCEMENTOPTIONS&lt;/P&gt;&lt;P&gt;it will show the dotted lines in orange color. keep the cursor on that right click select ENCHANCEMENT-&amp;gt;CREATE.&lt;/P&gt;&lt;P&gt;you will be able to create the enhancement implementation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 11:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125834#M1364518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-26T11:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement Implementation in FM: CHANGEDOCUMENT_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125835#M1364519</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;I changed FM: CHANGEDOCUMENT_DISPLAY with &lt;STRONG&gt;access Key&lt;/STRONG&gt;. My problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all,&lt;/P&gt;&lt;P&gt;Somi Reddy Satti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 06:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement-implementation-in-fm-changedocument-display/m-p/6125835#M1364519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-01T06:56:12Z</dc:date>
    </item>
  </channel>
</rss>

