<?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: Material Availability Date in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681875#M1576099</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changing in SAVE_DOC_PREPARE and MOVE_FIELDS_VBAK will not work as standard code redetermines the FMBDAT after these exits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2011 16:17:54 GMT</pubDate>
    <dc:creator>former_member253923</dc:creator>
    <dc:date>2011-02-24T16:17:54Z</dc:date>
    <item>
      <title>Material Availability Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681873#M1576097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a field called Material Availability date in VBAK (VBAK-FMBDAT ). During Sales Order Creation system internally copies the date from the line item level to this field. I have written in a code in "userexit_save_document" (MV45AFZZ) to override this date, but still the update isn't happening, though i see the new value in debugging till the commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any light thrown on this would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:04:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681873#M1576097</guid>
      <dc:creator>former_member253923</dc:creator>
      <dc:date>2011-02-24T16:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Material Availability Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681874#M1576098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is generally not a recommended practice to change SALES Order data in USEREXIT_SAVE_DOCUMENT... Try SAVE_DOCUMENT_PREPARE user exit...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681874#M1576098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T16:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Material Availability Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681875#M1576099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changing in SAVE_DOC_PREPARE and MOVE_FIELDS_VBAK will not work as standard code redetermines the FMBDAT after these exits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681875#M1576099</guid>
      <dc:creator>former_member253923</dc:creator>
      <dc:date>2011-02-24T16:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Material Availability Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681876#M1576100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USEREXIT_SAVE_DOCUMENT_PREPARE in MV50AFZ1 will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I remember i had done something like this to change the field value in VBAK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE vbak.
ASSIGN ('(SAPMV45A)VBAK') TO &amp;lt;fs&amp;gt;. 
if &amp;lt;fs&amp;gt; is assigned.
&amp;lt;F_VBAK&amp;gt;-FMBDAT = sy-datum.   
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 17:17:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681876#M1576100</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-02-24T17:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Material Availability Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681877#M1576101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I saw that MV50AFZ1 is called during Sales Order creation only if an automatic delivery creation is set. For SO, only MV45AFZZ DOC_PREPARE is called. We dont want auto deliv creation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your inputs so far!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 09:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-availability-date/m-p/7681877#M1576101</guid>
      <dc:creator>former_member253923</dc:creator>
      <dc:date>2011-02-25T09:43:52Z</dc:date>
    </item>
  </channel>
</rss>

