<?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: Problem in VF01 Exit. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832257#M1590092</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;Could you mind give more explicit solution to me? Because i 'm not the expert in the Business Add-in?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Luke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Apr 2011 02:17:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-20T02:17:19Z</dc:date>
    <item>
      <title>Problem in VF01 Exit.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832253#M1590088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Requirement: &lt;/P&gt;&lt;P&gt; If billing date is &amp;gt; PGI date, otherwise not allow to post the document within same fiscal period.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I know that the user-exit : USEREXIT_FILL_VBRK_VBRP can let me to check the billing date.&lt;/P&gt;&lt;P&gt;But if i output the error message, it just hold on the screen and not allow user to input again. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Can anybody know that and better method that i can allow user to input the correct billing date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Luke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 09:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832253#M1590088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-19T09:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in VF01 Exit.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832254#M1590089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Is it any new method to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Luke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 16:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832254#M1590089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-19T16:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in VF01 Exit.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832255#M1590090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could implement the BAdI &lt;STRONG&gt;BADI_SD_BILLING&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;This has a method called &lt;STRONG&gt;INVOICE_DOCUMENT_CHECK&lt;/STRONG&gt;. You can perform your validation there and issue a message if necessary (if error causes problem, try an 'S'-type message). Then set the CHANGING parameter FBAD_DATA to 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 17:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832255#M1590090</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-04-19T17:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in VF01 Exit.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832256#M1590091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your requirement isn't very clear other than wanting to change the date at billing time.  This isn't a very effective approach, especially in scenarios where the billing due list is involved.  You can set an initial billing date in the order at the header or item level and carry that over via delivery and billing copy control. However, SAP is still going to override the date at PGI time so you can use the delivery BADI to reset the date.  You can detect the PGI and set the correct date (from the order or using some logic of your own) in IF_EX_LE_SHP_DELIVERY_PROC~SAVE_DOCUMENT_PREPARE.  This would be a better approach than stopping the invoice create process with a hard error every time.  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;You might also consider a billing copy requirement if you need some additional logic to stop deliveries from billing on certain dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADI_SD_BILLING is for internal use only - it mostly mirrors the existing user exits...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 17:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832256#M1590091</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2011-04-19T17:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in VF01 Exit.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832257#M1590092</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;Could you mind give more explicit solution to me? Because i 'm not the expert in the Business Add-in?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Luke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 02:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-vf01-exit/m-p/7832257#M1590092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-20T02:17:19Z</dc:date>
    </item>
  </channel>
</rss>

