<?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 SMOD &amp; CMOD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283996#M1022032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the difference between SMOD and CMOD? Any specific reasons for using SMOD and CMOD? We can anyway search enhancement in SE84.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 07:23:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-12T07:23:40Z</dc:date>
    <item>
      <title>SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283996#M1022032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the difference between SMOD and CMOD? Any specific reasons for using SMOD and CMOD? We can anyway search enhancement in SE84.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283996#M1022032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283997#M1022033</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;I searched the forum with the terms "difference between SMOD and CMOD" and found lots of answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283997#M1022033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283998#M1022034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CMOD is the Project Management of SAP Enhancements (i.e., SMOD Enhancements). SMOD contains the actual enhancements and CMOD is the grouping of those SMOD enhancements.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a function module. The code for the function module is written by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The naming standard of function modules for function module exits is:  &lt;/P&gt;&lt;P&gt;EXIT_&amp;lt;program name&amp;gt;&amp;lt;3 digit suffix&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The call to a functionmodule exit is implemented as:  &lt;/P&gt;&lt;P&gt;CALL CUSTOMER.-FUNCTION &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt; digit suffix&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program for transaction VA01 Create salesorder is SAPMV45A &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If you search for CALL CUSTOMER-FUNCTION program SAPMV45A you will find ( Among other user exits):  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION '003' &lt;/P&gt;&lt;P&gt;  exporting &lt;/P&gt;&lt;P&gt;    xvbak   = vbak &lt;/P&gt;&lt;P&gt;    xvbuk   = vbuk &lt;/P&gt;&lt;P&gt;    xkomk   = tkomk &lt;/P&gt;&lt;P&gt;  importing &lt;/P&gt;&lt;P&gt;    lvf_subrc = lvf_subrc &lt;/P&gt;&lt;P&gt;  tables &lt;/P&gt;&lt;P&gt;    xvbfa = xvbfa &lt;/P&gt;&lt;P&gt;    xvbap = xvbap &lt;/P&gt;&lt;P&gt;    xvbup = xvbup.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exit calls function module EXIT_SAPMV45A_003  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. How to find user exits  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know the Exit name, go to transaction CMOD. Choose menu Utillities-&amp;gt;SAP Enhancements.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter the exit name and press enter.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will now come to a screen that shows the function module exits for the exit.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use this ABAP program to search for user exits :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finding the user-exits of a SAP transaction code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Using Project management of SAP Enhancements  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want to create a project to enhance transaction VA01 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Go to transaction CMOD &lt;/P&gt;&lt;P&gt;- Create a project called ZVA01 &lt;/P&gt;&lt;P&gt;- Choose the Enhancement assign radio button and press the Change button &lt;/P&gt;&lt;P&gt;In the first column enter V45A0002 Predefine sold-to party in sales document . Note that an enhancement can only be used for 1 project. If the enhancement is allready in use, and error message will be displayed &lt;/P&gt;&lt;P&gt;- Press Save &lt;/P&gt;&lt;P&gt;- Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002.  &lt;/P&gt;&lt;P&gt;- Double Click on the exit. &lt;/P&gt;&lt;P&gt;Now the function module is displayed. Double click on include ZXVVAU04 in the function module &lt;/P&gt;&lt;P&gt;Insert the following code into the include: E_KUNNR = '2155'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activate the include program. Go back to CMOD and activate the project.  &lt;/P&gt;&lt;P&gt;Goto transaction VA01 and create a salesorder. Note that Sold-to-party now automatically is "2155"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283998#M1022034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283999#M1022035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4283999#M1022035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284000#M1022036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The original version of chandrika chireddy's post can be found here;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284000#M1022036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284001#M1022037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284001#M1022037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284002#M1022038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMOD we can find all enhancement which are all exists in the SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CMOD we can find the enhancement based on the project ( Specific area ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284002#M1022038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284003#M1022039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The best way to rembr the CMOD and SMOD is &lt;/P&gt;&lt;P&gt;CMOD - Create&lt;/P&gt;&lt;P&gt;SMOD - Display....&lt;/P&gt;&lt;P&gt;As in the  earlier replies u use CMOD to create the projects and the SMOD is where ur enhancements are existing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Madan..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284003#M1022039</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2008-08-12T07:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: SMOD &amp; CMOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284004#M1022040</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;CMOD is the Project Management of SAP Enhancements (i.e., SMOD Enhancements). SMOD contains the actual enhancements and CMOD is the grouping of those SMOD enhancements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smod-cmod/m-p/4284004#M1022040</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2008-08-12T07:39:31Z</dc:date>
    </item>
  </channel>
</rss>

