<?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: Regarding User-Exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404803#M535998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; If you are on release 2004 or higher you can use the BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;user exit&lt;/P&gt;&lt;P&gt;EXIT_SAPMF02K_001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;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>Fri, 22 Jun 2007 11:13:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-22T11:13:35Z</dc:date>
    <item>
      <title>Regarding User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404802#M535997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create an User-Exit for transaction XK01,so that for a particular organization it should not allow to enter schema other than some selected schema group.&lt;/P&gt;&lt;P&gt;Ex - For Purchase Org. 5000&lt;/P&gt;&lt;P&gt;       It should not allow schema group other than india&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 11:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404802#M535997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T11:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404803#M535998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; If you are on release 2004 or higher you can use the BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;user exit&lt;/P&gt;&lt;P&gt;EXIT_SAPMF02K_001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;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>Fri, 22 Jun 2007 11:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404803#M535998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T11:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404804#M535999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have the idea of how i can disable the other value in schema group.[&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 11:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404804#M535999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T11:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404805#M536000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Somewhere in your PBO module you will have the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS '&amp;lt;name of status&amp;gt;' EXCLUDING lt_excl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are on your "first" screen then lt_excl will be empty, i.e. all functions are active.&lt;/P&gt;&lt;P&gt;Now, when the user execute "Create customer" you could fill the itab somewhere in the PAI module USER_COMMAND_xxxx:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH: lt_excl.&lt;/P&gt;&lt;P&gt;  APPEND '&amp;lt;fcode to be inactive&amp;gt;' TO lt_excl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the next screen this function will be disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 11:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404805#M536000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T11:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404806#M536001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 11:10:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-user-exit/m-p/2404806#M536001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T11:10:03Z</dc:date>
    </item>
  </channel>
</rss>

