<?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: Using USEREXIT_AVAILABILITY_OUT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244346#M1211778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just sent you a link respond to that and I will award full points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Apr 2009 12:56:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-17T12:56:59Z</dc:date>
    <item>
      <title>Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244343#M1211775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If anyone has used the above user exit for carrying out availability checks, then please tell me how to use it. I want to change the 'Dely/Conf date' and 'Confirmed Qty'  on the availability control screen but no success so far. There is no documentation available on this exit as well &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;   PS: I am using VA02 and this user exit is called from routine MVERF_PRUEFEN in include LV03VF0M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: hiFlier on Feb 26, 2009 8:30 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2009 07:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244343#M1211775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-26T07:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244344#M1211776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have the same issue...did you find a solution?  Help!  Let me know.  Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 18:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244344#M1211776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T18:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244345#M1211777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, finally I made it run. But not through the exits. They do not help at all (unless SAP has some trick to make it work!).I had to change the standard program after getting access keys. I used memory id to determine whether the custom logic should be fired. We had some checks based on which the dely date had to populated so am including the code where the date is finally copied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In include  LATP4FD9 - move the desired date to the schedule line date - Line 194&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    updated material availability date is stored in ATPTERMX&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE atptermx WITH KEY tline = mdve_diax-tline&lt;/P&gt;&lt;P&gt;                          TRANSPORTING mbdat.&lt;/P&gt;&lt;P&gt;      rv03v-mbdtl               = atptermx-mbdat.&lt;/P&gt;&lt;P&gt;*{   INSERT         &lt;/P&gt;&lt;P&gt;       DATA EXIT_FLAG2(1).&lt;/P&gt;&lt;P&gt;       IMPORT EXIT_FLAG1 TO EXIT_FLAG2 FROM MEMORY ID atpcsx-delnr.&lt;/P&gt;&lt;P&gt;       IF NOT EXIT_FLAG2 IS INITIAL.&lt;/P&gt;&lt;P&gt;         RV03V-ETDTL = RV03V-WZTER.&lt;/P&gt;&lt;P&gt;         FREE MEMORY ID atpcsx-delnr.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;P&gt;      rv03v-etdtl               = mdve_diax-dat02.&lt;/P&gt;&lt;P&gt;*{   INSERT         &lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;The memory id can be populated in USEREXIT_AVAILABILITY_IN and then retrieved in above code. You can debug, change the values and see the results before implementing the code as well. Cheers!! &lt;/P&gt;&lt;P&gt;(Alas, I don't think I can get points for my own post..lol)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 07:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244345#M1211777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T07:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244346#M1211778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just sent you a link respond to that and I will award full points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 12:56:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244346#M1211778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T12:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244347#M1211779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey... thanks.. i just replied to your post.. Hope the solution worked for you ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 13:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244347#M1211779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T13:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using USEREXIT_AVAILABILITY_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244348#M1211780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 07:59:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-userexit-availability-out/m-p/5244348#M1211780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T07:59:39Z</dc:date>
    </item>
  </channel>
</rss>

