<?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: please help with this bapi for creating billing document in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634598#M283019</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't I have to call anoter bapi 'BAPI_TRANSACTION_COMMIT' to commit work? I see there is just 'commit work' statement in your code? This is working for this bapi, but will that 'commit work' statement work for other bapis also or do I have to go for calling 'BAPI_TRANSACTION_COMMIT' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Sep 2006 16:41:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-28T16:41:09Z</dc:date>
    <item>
      <title>please help with this bapi for creating billing document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634595#M283016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create a billing document using the bapi:  BAPI_BILLINGDOC_CREATEMULTIPLE from a delivery number and NOT A SALES ORDER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me what  details to be passed to table  BILLINGDATAIN . Please don't provide me function module documentation because it does n't help me create billing document from delivery. A sample source code or suggestion to what to pass would be really great! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishen&lt;/P&gt;&lt;P&gt;P.S. Points assured for helpful answers and thanks for your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 03:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634595#M283016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T03:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: please help with this bapi for creating billing document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634596#M283017</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;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: s_vbap TYPE vbap.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;TABLES: vbak,vbap,likp, lips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_conditions TYPE STANDARD TABLE OF bapikomv WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_ccard  TYPE STANDARD TABLE OF bapiccard_vf WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_errors TYPE STANDARD TABLE OF bapivbrkerrors WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_vbeln TYPE vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from likp&lt;/P&gt;&lt;P&gt;                where vbeln = p_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * from lips where&lt;/P&gt;&lt;P&gt;                vbeln = likp-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  t_billing-salesorg   = likp-vkorg.&lt;/P&gt;&lt;P&gt;  t_billing-ref_doc     = likp-vbeln.&lt;/P&gt;&lt;P&gt;  t_billing-ref_item    = lips-posnr.&lt;/P&gt;&lt;P&gt;  t_billing-doc_number     = p_vbeln.&lt;/P&gt;&lt;P&gt;  t_billing-itm_number    = lips-posnr.&lt;/P&gt;&lt;P&gt;  t_billing-ordbilltyp  = 'ZINV'.&lt;/P&gt;&lt;P&gt;  t_billing-price_date = sy-datum.&lt;/P&gt;&lt;P&gt;  t_billing-ref_doc_ca  = likp-vbtyp.&lt;/P&gt;&lt;P&gt;  t_billing-material    = lips-matnr.&lt;/P&gt;&lt;P&gt;  t_billing-plant       = lips-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND t_billing.&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;  TABLES&lt;/P&gt;&lt;P&gt;    billingdatain         = t_billing&lt;/P&gt;&lt;P&gt;    return                = t_return&lt;/P&gt;&lt;P&gt;    success               = t_success&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;commit work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 04:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634596#M283017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T04:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: please help with this bapi for creating billing document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634597#M283018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Krishen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   The simplest way will be to pass the delivery number to REF_DOC and 'J' to REF_DOC_CA for table: BILLINGDATAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Here 'J' denotes that the reference document number is delivery and rest will be handled through the copy control set-up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Hope the above info helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 07:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634597#M283018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T07:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: please help with this bapi for creating billing document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634598#M283019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't I have to call anoter bapi 'BAPI_TRANSACTION_COMMIT' to commit work? I see there is just 'commit work' statement in your code? This is working for this bapi, but will that 'commit work' statement work for other bapis also or do I have to go for calling 'BAPI_TRANSACTION_COMMIT' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 16:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help-with-this-bapi-for-creating-billing-document/m-p/1634598#M283019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T16:41:09Z</dc:date>
    </item>
  </channel>
</rss>

