<?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: va01 for Incompletion Log in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147349#M1514159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the program MV45AFZZ and look for the routine USEREXIT_SAVE_DOCUMENT_PREPARE and add the following code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before that, you should get access key from basis if it is not modified yet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to add more conditions before raising message, since it will have impact on the other sales process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM userexit_save_document_prepare.

  IF xvbap[] IS INITIAL. " AND vbak-auart EQ 'OR' AND etc...
    MESSAGE 'NO ITEMS ENTERED' TYPE 'E'.
  ENDIF.

ENDFORM.                    "USEREXIT_SAVE_DOCUMENT_PREPARE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Aug 2010 09:45:10 GMT</pubDate>
    <dc:creator>asik_shameem</dc:creator>
    <dc:date>2010-08-21T09:45:10Z</dc:date>
    <item>
      <title>va01 for Incompletion Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147346#M1514156</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;I have created the Sales order for VA01. but when put the entry for sold to party and PO  etc. but item details in not entered in VA01 &amp;amp; check the log (ctr + f8) . then error is not showing for material , qty, plant is not entered . document is Complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the material field is filled and the others field like Qty &amp;amp; plant  are blank mean system saying document as incomplete. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly guide me how to solve the Problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 07:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147346#M1514156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-21T07:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: va01 for Incompletion Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147347#M1514157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as there is no value for material in item level, SAP won't check for the incompletion in the item level. And it is possible to create SO without any item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do that check in the user exit USEREXIT_SAVE_DOCUMENT_PREPARE. But it wont appear in the incompletion log.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 09:10:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147347#M1514157</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2010-08-21T09:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: va01 for Incompletion Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147348#M1514158</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;this user exits is a Blank. How to create the user exits for this Tranaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what write code for this user exits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 09:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147348#M1514158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-21T09:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: va01 for Incompletion Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147349#M1514159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the program MV45AFZZ and look for the routine USEREXIT_SAVE_DOCUMENT_PREPARE and add the following code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before that, you should get access key from basis if it is not modified yet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to add more conditions before raising message, since it will have impact on the other sales process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM userexit_save_document_prepare.

  IF xvbap[] IS INITIAL. " AND vbak-auart EQ 'OR' AND etc...
    MESSAGE 'NO ITEMS ENTERED' TYPE 'E'.
  ENDIF.

ENDFORM.                    "USEREXIT_SAVE_DOCUMENT_PREPARE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 09:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147349#M1514159</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2010-08-21T09:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: va01 for Incompletion Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147350#M1514160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you gave this code pasted but error is not solve out. i have pasted in below code for enhancement. but va01 said that document is complte not not message generated material not entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USEREXIT_SAVE_DOCUMENT_PREPARE.&lt;/P&gt;&lt;P&gt;"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(2 ) Form USEREXIT_SAVE_DOCUMENT_PREPARE, Start                                                                                D&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-Start: (2 )----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt;$&lt;STRONG&gt;$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENHANCEMENT 351  ZSD_SAVE.    "active version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF xvbap[] IS INITIAL  AND  VBAP-MATNR = ' ' AND VBAK-AUART = ' ' .&lt;/P&gt;&lt;P&gt;       MESSAGE 'NO ITEMS ENTERED' TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDENHANCEMENT.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-End:   (2 )----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt;$&lt;STRONG&gt;$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls check&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Aug 2010 06:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/va01-for-incompletion-log/m-p/7147350#M1514160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-23T06:30:23Z</dc:date>
    </item>
  </channel>
</rss>

