<?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: Invoice Auto Post in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274457#M782842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the example code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MRM_INVOICE_READ'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                i_belnr     = i_rbkp-belnr&lt;/P&gt;&lt;P&gt;                i_gjahr     = i_rbkp-gjahr&lt;/P&gt;&lt;P&gt;                i_xselk     = 'X'&lt;/P&gt;&lt;P&gt;                i_buffer_on = 'X'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                e_rbkpv     = mrm_rbkpv&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                t_drseg     = ydrseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM parked_document_post USING mrm_rbkpv&lt;/P&gt;&lt;P&gt;                                         ydrseg[]&lt;/P&gt;&lt;P&gt;                                         i_editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM parked_document_post USING&lt;/P&gt;&lt;P&gt;                             i_rbkpv   TYPE mrm_rbkpv&lt;/P&gt;&lt;P&gt;                             ti_drseg  TYPE mmcr_tdrseg&lt;/P&gt;&lt;P&gt;                             i_editor  TYPE REF TO c_textedit_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: s_drseg TYPE  mmcr_drseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MRM_PARKED_INVOICE_POST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_rbkpv       = mrm_rbkpv&lt;/P&gt;&lt;P&gt;            ti_drseg      = ydrseg[]&lt;/P&gt;&lt;P&gt;            i_editor      = i_editor&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            error_message = 01&lt;/P&gt;&lt;P&gt;            OTHERS        = 02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 18:33:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-17T18:33:18Z</dc:date>
    <item>
      <title>Invoice Auto Post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274456#M782841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to Auto Post an Invoive.&lt;/P&gt;&lt;P&gt;I am planning on using function Module MRM_INVOICE_READ to get the invoice header data and then use the header and line item data and pass to FM MRM_PARKED_INVOICE_POST to post the invoice. &lt;/P&gt;&lt;P&gt;Please let me know if this looks good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also any examples programs for the above requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 18:05:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274456#M782841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T18:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Invoice Auto Post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274457#M782842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the example code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MRM_INVOICE_READ'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                i_belnr     = i_rbkp-belnr&lt;/P&gt;&lt;P&gt;                i_gjahr     = i_rbkp-gjahr&lt;/P&gt;&lt;P&gt;                i_xselk     = 'X'&lt;/P&gt;&lt;P&gt;                i_buffer_on = 'X'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                e_rbkpv     = mrm_rbkpv&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                t_drseg     = ydrseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM parked_document_post USING mrm_rbkpv&lt;/P&gt;&lt;P&gt;                                         ydrseg[]&lt;/P&gt;&lt;P&gt;                                         i_editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM parked_document_post USING&lt;/P&gt;&lt;P&gt;                             i_rbkpv   TYPE mrm_rbkpv&lt;/P&gt;&lt;P&gt;                             ti_drseg  TYPE mmcr_tdrseg&lt;/P&gt;&lt;P&gt;                             i_editor  TYPE REF TO c_textedit_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: s_drseg TYPE  mmcr_drseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MRM_PARKED_INVOICE_POST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_rbkpv       = mrm_rbkpv&lt;/P&gt;&lt;P&gt;            ti_drseg      = ydrseg[]&lt;/P&gt;&lt;P&gt;            i_editor      = i_editor&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            error_message = 01&lt;/P&gt;&lt;P&gt;            OTHERS        = 02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 18:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274457#M782842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T18:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Invoice Auto Post</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274458#M782843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 18:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-auto-post/m-p/3274458#M782843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T18:44:31Z</dc:date>
    </item>
  </channel>
</rss>

