<?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 User Exit for ME21 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972014#M701452</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to User Exits. I have one requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In T Code ME21N if the Document type (BSART) is P373 and Vender number (SUPERFIELD) is &amp;#145;70370&amp;#146;, then only purchase order should be created otherwise it should raise error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do this user exit i have got the User exit name and enhancement name.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exit Name : EXIT_SAPLEBND_002&lt;/P&gt;&lt;P&gt;Enhancement Name : M06E0004&lt;/P&gt;&lt;P&gt;Version 4.7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user exit mentioned above has already been implemented. I need to add the code to meet the above mentioned requirement now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to add to the already existing user exit. If YES, please explain the procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two fields mentioned above are from structures. How do I find out the actual tables for these two fields. The fields BSART, SUPERFIELD are from structure MEPO_TOPLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points for every useful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Nov 2007 08:23:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-14T08:23:55Z</dc:date>
    <item>
      <title>User Exit for ME21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972014#M701452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to User Exits. I have one requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In T Code ME21N if the Document type (BSART) is P373 and Vender number (SUPERFIELD) is &amp;#145;70370&amp;#146;, then only purchase order should be created otherwise it should raise error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do this user exit i have got the User exit name and enhancement name.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exit Name : EXIT_SAPLEBND_002&lt;/P&gt;&lt;P&gt;Enhancement Name : M06E0004&lt;/P&gt;&lt;P&gt;Version 4.7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user exit mentioned above has already been implemented. I need to add the code to meet the above mentioned requirement now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to add to the already existing user exit. If YES, please explain the procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two fields mentioned above are from structures. How do I find out the actual tables for these two fields. The fields BSART, SUPERFIELD are from structure MEPO_TOPLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points for every useful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 08:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972014#M701452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T08:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for ME21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972015#M701453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add code in the existing implementation of exist, you have to write code in that specific include of that function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise you can create another project and assign that exit; but at a time one implementation can be active, so you have to first deactivate the previous implementaion before activating it (here fear of losing old implemented logic remains!!!) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for your information vendor number is LIFNR.&lt;/P&gt;&lt;P&gt;you will get these data from I_CEKKO structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishnendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 09:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972015#M701453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T09:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit for ME21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972016#M701454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishnendu laha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your information,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the field name for Vendor in me21n by pressing f1 in that field it showing me as MEPO_TOPLINE-SUPERFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If you send me coding for my requirment i will be very much thankful to you.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and plz can u tell me how to find the exisiting project name for already implemented exit, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 09:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-me21/m-p/2972016#M701454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-14T09:53:02Z</dc:date>
    </item>
  </channel>
</rss>

