<?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 Auto Post Invoice in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371292#M809235</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 was wondering if any one has any custom program using the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MRM_PARKED_INVOICE_POST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It coudl be great help to me. I have developed this program but for some reason I am unable to get it working.&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>Tue, 29 Jan 2008 16:41:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-29T16:41:02Z</dc:date>
    <item>
      <title>Auto Post Invoice</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371292#M809235</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 was wondering if any one has any custom program using the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MRM_PARKED_INVOICE_POST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It coudl be great help to me. I have developed this program but for some reason I am unable to get it working.&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>Tue, 29 Jan 2008 16:41:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371292#M809235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T16:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Post Invoice</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371293#M809236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;through you have not post the exact code here so its bit difficult to give you the exact solution, pls check the below code and check with your 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;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 16:57:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371293#M809236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T16:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Post Invoice</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371294#M809237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have my code similar to what you have posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering when we are passing the data to the function module &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MRM_PARKED_INVOICE_POST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what data we are passing in ydrseg[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ydrseg[] is huge and what fields need data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 17:36:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-post-invoice/m-p/3371294#M809237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T17:36:44Z</dc:date>
    </item>
  </channel>
</rss>

