<?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: Regarding RV_INVOICE_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569461#M859111</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for help just reply to this message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 May 2008 17:12:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-27T17:12:36Z</dc:date>
    <item>
      <title>Regarding RV_INVOICE_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569460#M859110</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;i am using RV_INVOICE_CREATE fm to create billing document i am just passing my delivery number and some values like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RV_INVOICE_CREATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      VBSK_I       = VBSK_I&lt;/P&gt;&lt;P&gt;      WITH_POSTING = WITH_POSTING&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      XKOMFK       = P_XKOMFK.&lt;/P&gt;&lt;P&gt;and its working fine and is creating billind document.&lt;/P&gt;&lt;P&gt;But my problem is this that i have delivery number of which i have to create a billing document plus i have to assign a pricing condition type to table XKOMV for a particular item number.&lt;/P&gt;&lt;P&gt;again its creating a billing document but its not adding the condition type to that particular item.&lt;/P&gt;&lt;P&gt;IS THERE ANYWAY YOU GUYS HELP ME OUT WITH THAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 17:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569460#M859110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T17:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RV_INVOICE_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569461#M859111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for help just reply to this message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2008 17:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569461#M859111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-27T17:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding RV_INVOICE_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569462#M859112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jawad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How did you with RV_INVOICE_CREATE? I am having problem creating invoice with RV_INVOICE_CREATE. My code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT t_ord.&lt;/P&gt;&lt;P&gt;      t_komfk-vbeln = t_ord-vbeln.&lt;/P&gt;&lt;P&gt;      APPEND t_komfk.&lt;/P&gt;&lt;P&gt;      AT LAST.&lt;/P&gt;&lt;P&gt;        gs_vbsk-smart = 'F'.&lt;/P&gt;&lt;P&gt;        gs_vbsk-ernam = sy-uname.&lt;/P&gt;&lt;P&gt;        gs_vbsk-erdat = sy-datum.&lt;/P&gt;&lt;P&gt;        gs_vbsk-uzeit = sy-uzeit.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'RV_INVOICE_CREATE'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            vbsk_i                    = gs_vbsk&lt;/P&gt;&lt;P&gt;            with_posting              = 'X'&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            vbsk_e                    = gs_vbsk_e&lt;/P&gt;&lt;P&gt;            od_bad_data               = g_bad&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            xkomfk                    = t_komfk&lt;/P&gt;&lt;P&gt;            xkomv                     = t_komv&lt;/P&gt;&lt;P&gt;            xthead                    = t_head&lt;/P&gt;&lt;P&gt;            xvbfs                     = t_vbfs&lt;/P&gt;&lt;P&gt;            xvbpa                     = t_vbpa&lt;/P&gt;&lt;P&gt;            xvbrk                     = t_vbrk&lt;/P&gt;&lt;P&gt;            xvbrp                     = t_vbrp&lt;/P&gt;&lt;P&gt;            xvbss                     = t_vbss&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;P&gt;    COMMIT WORK.&lt;/P&gt;&lt;P&gt;    BREAK-POINT ID z_chkpt_grp.&lt;/P&gt;&lt;P&gt;  ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 04:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-rv-invoice-create/m-p/3569462#M859112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T04:21:14Z</dc:date>
    </item>
  </channel>
</rss>

