<?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 Need a function or bapi to hold invoice document in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845434#M1591346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made a program to read a hold invoice using this function "MRM_INVOICE_READ" is there other functions or bapi doing this job reading hold invoice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now after i change the data i need to hold the document again what is the best function for this job and i don't want  to park the document&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 May 2011 09:40:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-13T09:40:56Z</dc:date>
    <item>
      <title>Need a function or bapi to hold invoice document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845434#M1591346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made a program to read a hold invoice using this function "MRM_INVOICE_READ" is there other functions or bapi doing this job reading hold invoice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now after i change the data i need to hold the document again what is the best function for this job and i don't want  to park the document&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 09:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845434#M1591346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-13T09:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need a function or bapi to hold invoice document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845435#M1591347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used FM &lt;STRONG&gt;SAVE_TEMP_DOCUMENT&lt;/STRONG&gt;. But it is neither released nor documented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 13:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845435#M1591347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-13T13:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need a function or bapi to hold invoice document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845436#M1591348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ibrahem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can simply use f.m. MRM_INVOICE_READ to read whatever you have already done and held, and then use the f.m. MRM_INVOICE_PARK to save your changes: to avoid really parking the invoice, it is important to specify through the IMPORTING parameter &lt;EM&gt;i_rbstat_new&lt;/EM&gt; the hold status 'D', as shown in the example below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;park invoice with status 'D' hold&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'MRM_INVOICE_PARK'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_rbkpv           = ls_rbkpv&lt;/P&gt;&lt;P&gt;      i_xupda           = 'U'&lt;/P&gt;&lt;P&gt;      i_rbstat_new      = 'D'&lt;/P&gt;&lt;P&gt;      ti_drseg          = lt_drseg&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      e_belnr           = lv_belnr&lt;/P&gt;&lt;P&gt;      e_gjahr           = lv_gjahr&lt;/P&gt;&lt;P&gt;      te_errprot        = lt_errp&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      invalid_status    = 1&lt;/P&gt;&lt;P&gt;      update_impossible = 2&lt;/P&gt;&lt;P&gt;      user_exit         = 3&lt;/P&gt;&lt;P&gt;      OTHERS            = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2011 14:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-or-bapi-to-hold-invoice-document/m-p/7845436#M1591348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-09T14:05:09Z</dc:date>
    </item>
  </channel>
</rss>

