<?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 Bapi Function????? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-function/m-p/2619227#M601349</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone plz. tell me the the process to use the Bapi for Bill/Invoice Creation.&lt;/P&gt;&lt;P&gt;Bapi is&amp;lt;b&amp;gt; BAPI_BILLINGDOC_CREATEMULTIPLE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i want to know the coding for passing the values in this BAPI. What exactly i have to code to get the billing done using this BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also , i want to know whether all those messages will come using this BAPI  what comes using VF01 TCode while creating a Bill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz. reply as soon as possible. Its Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2007 11:32:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-24T11:32:51Z</dc:date>
    <item>
      <title>Bapi Function?????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-function/m-p/2619227#M601349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone plz. tell me the the process to use the Bapi for Bill/Invoice Creation.&lt;/P&gt;&lt;P&gt;Bapi is&amp;lt;b&amp;gt; BAPI_BILLINGDOC_CREATEMULTIPLE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i want to know the coding for passing the values in this BAPI. What exactly i have to code to get the billing done using this BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also , i want to know whether all those messages will come using this BAPI  what comes using VF01 TCode while creating a Bill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz. reply as soon as possible. Its Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-function/m-p/2619227#M601349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Bapi Function?????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-function/m-p/2619228#M601350</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;U can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          POSTING       = ''&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          BILLINGDATAIN = TI_BILLINGDATAIN&lt;/P&gt;&lt;P&gt;          ERRORS        = TI_ERRORS&lt;/P&gt;&lt;P&gt;          RETURN        = TI_RETURN2&lt;/P&gt;&lt;P&gt;          SUCCESS       = TI_SUCCESS.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check error&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT TI_RETURN WHERE TYPE = 'E' OR&lt;/P&gt;&lt;P&gt;                                               TYPE = 'A'.&lt;/P&gt;&lt;P&gt;  EXIT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  REFRESH TI_RETURN2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            WAIT   = 'X'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            RETURN = TI_RETURN2.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check error  &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; LOOP AT TI_RETURN WHERE TYPE = 'E' OR&lt;/P&gt;&lt;P&gt;                                                TYPE = 'A'.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Search the bill&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    SELECT SINGLE VBELN&lt;/P&gt;&lt;P&gt;    INTO W_FACTURA&lt;/P&gt;&lt;P&gt;    FROM VBFA&lt;/P&gt;&lt;P&gt;    WHERE VBELV = W_PEDIDO.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&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>Tue, 24 Jul 2007 11:38:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-function/m-p/2619228#M601350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T11:38:46Z</dc:date>
    </item>
  </channel>
</rss>

