<?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 how to Modify the Std. Include in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044510#M1351345</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 am working on a program and in that program there is a include and it says: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;include rprapaex_001.
* This include is reserved for user specific routines

* include rprapaex_001.
* This include is reserved for user specific routines

*----------------------------------------------------------------------*
*       FORM SET_MC_FIELD_BY_USER
*----------------------------------------------------------------------*
*  routine changes the sortfield of the A/P-account
*----------------------------------------------------------------------*
form set_vendor_no_by_user.
* blf00-lifnr = ...
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to modify this include and need to put my code in here. Can you please tell me how can I do this and what else do I need to do to activate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Aug 2009 13:14:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-11T13:14:22Z</dc:date>
    <item>
      <title>how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044510#M1351345</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 am working on a program and in that program there is a include and it says: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;include rprapaex_001.
* This include is reserved for user specific routines

* include rprapaex_001.
* This include is reserved for user specific routines

*----------------------------------------------------------------------*
*       FORM SET_MC_FIELD_BY_USER
*----------------------------------------------------------------------*
*  routine changes the sortfield of the A/P-account
*----------------------------------------------------------------------*
form set_vendor_no_by_user.
* blf00-lifnr = ...
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to modify this include and need to put my code in here. Can you please tell me how can I do this and what else do I need to do to activate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044510#M1351345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T13:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044511#M1351346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;every include has some enhacement options&lt;/P&gt;&lt;P&gt;so you can activate that enhacement spot and write your code there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are Implicit Enhancement Options At the end of an include. There are some restrictions, for example, not at the end of a method include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Aug 11, 2009 3:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044511#M1351346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T13:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044512#M1351347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can enhance/add your own code through Implicit Enhancements which are present at begining and end of form  and finally at the end of program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* include rprapaex_001.
* This include is reserved for user specific routines

*----------------------------------------------------------------------*
*       FORM SET_MC_FIELD_BY_USER
*----------------------------------------------------------------------*
*  routine changes the sortfield of the A/P-account
*----------------------------------------------------------------------*
form set_vendor_no_by_user.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Form SET_VENDOR_NO_BY_USER, Start                                                                                A
* blf00-lifnr = ...
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(2) Form SET_VENDOR_NO_BY_USER, End                                                                                A
endform.

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(3) Include RPRAPAEX_001, End                                                                                S&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044512#M1351347</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2009-08-11T13:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044513#M1351348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Mayank suggested, you can implement the Enhancement Spot if you are on the ABAP release 700. If you are on less than that, you need put your code in the user exit subroutine SET_MC_FIELD_BY_USER available in the Include RPRAPAEX_001. You need to have an access key to modify this include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044513#M1351348</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-08-11T13:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044514#M1351349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for the replies... we are on ECC 6.0 and my only worry is I just need to use the implicit enhancement and nothing else right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044514#M1351349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T13:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to Modify the Std. Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044515#M1351350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes..as suggested u need to check for the enhancement spots and u can use the implicit enhancement option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 13:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-the-std-include/m-p/6044515#M1351350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T13:30:58Z</dc:date>
    </item>
  </channel>
</rss>

