<?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: User-exit for material number assignment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426697#M1245267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Apr 2009 09:28:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-07T09:28:57Z</dc:date>
    <item>
      <title>User-exit for material number assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426693#M1245263</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;Can you please tell me the logic for the external number assignemt for the enhancement MGA00002 of material master.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mallika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 09:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426693#M1245263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T09:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: User-exit for material number assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426694#M1245264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mallika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with this exit you can change the material number set externally, like adding a prefix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say you create a material in TC MM01 with the manually set material number 123. That exit can add a prefix and set the material number to A123.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be more easy to see an advantage if materials are created by an IDOC or web service from an external system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Edgar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 13:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426694#M1245264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-06T13:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: User-exit for material number assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426695#M1245265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u so much for the reply..could u pls let me know how to code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 09:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426695#M1245265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T09:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: User-exit for material number assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426696#M1245266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, this is a simple example to add a prefix to kanban recipients:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF mmue1-mtart = 'CONT'    "kanban
   AND NOT matnr(1) = 'A'.
  CALL FUNCTION 'CONVERSION_EXIT_MATN1_OUTPUT' "remove leading zeros
    EXPORTING
      input  = matnr
    IMPORTING
      output = matnr.
  matnr(1) = 'A'. "prefix
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Edgar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 09:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426696#M1245266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T09:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: User-exit for material number assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426697#M1245267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 09:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-for-material-number-assignment/m-p/5426697#M1245267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T09:28:57Z</dc:date>
    </item>
  </channel>
</rss>

