<?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 Error in Idoc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904389#M1481864</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;I have intercompany billing document.There EDI output got triggered through RD04 output.It creates a IDOC successfully.But when I check the IDOC I see status message 51(Application document not posted).Error message is showing as below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Document t3es5 does not exist&lt;/P&gt;&lt;P&gt;Message no. 06019&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;can you please tell me how I can resolve the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bedayan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 May 2010 18:32:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-19T18:32:15Z</dc:date>
    <item>
      <title>Error in Idoc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904389#M1481864</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;I have intercompany billing document.There EDI output got triggered through RD04 output.It creates a IDOC successfully.But when I check the IDOC I see status message 51(Application document not posted).Error message is showing as below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Document t3es5 does not exist&lt;/P&gt;&lt;P&gt;Message no. 06019&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;can you please tell me how I can resolve the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bedayan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 18:32:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904389#M1481864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T18:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Idoc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904390#M1481865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find out what this number is:  t3es5 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the message is a kind of generic, the number can be a reference document number, or a contract number or . or  or....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to post the invoice with MIRO and see what errors come up in this transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 19:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904390#M1481865</guid>
      <dc:creator>JL23</dc:creator>
      <dc:date>2010-05-19T19:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Idoc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904391#M1481866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Badayana,&lt;/P&gt;&lt;P&gt;I took this code from standard program. You can check these tables with ur values, if any condition failes, it results the same message.&lt;/P&gt;&lt;P&gt;if not xbelnr is initial.&lt;/P&gt;&lt;P&gt;  select single * from rbkp            "Is an invoice existing??&lt;/P&gt;&lt;P&gt;           where belnr = xbelnr&lt;/P&gt;&lt;P&gt;           and   gjahr = xgjahr&lt;/P&gt;&lt;P&gt;           and   xrech = kreuz&lt;/P&gt;&lt;P&gt;           and   vgart = 'RD'.&lt;/P&gt;&lt;P&gt;  if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;    message id '06' type 'E' number '019' with xbelnr.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  select * from rseg up to 1 rows      "look for the PO number&lt;/P&gt;&lt;P&gt;           where belnr = xbelnr&lt;/P&gt;&lt;P&gt;           and   gjahr = xgjahr.&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;  if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;    message id '06' type 'E' number '019' with xbelnr.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                     "Exists a service entry sheet?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  select * from essr up to 1 rows      "Read service entry sheet&lt;/P&gt;&lt;P&gt;                where ebeln = rseg-ebeln&lt;/P&gt;&lt;P&gt;                and   ebelp = rseg-ebelp.&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;  if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;    message id '06' type 'E' number '019' with rseg-ebeln.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  h_awkey(10) = rbkp-belnr.&lt;/P&gt;&lt;P&gt;  h_awkey+10  = rbkp-gjahr.&lt;/P&gt;&lt;P&gt;  select * from bkpf up to 1 rows     "Read accounting document&lt;/P&gt;&lt;P&gt;                where awtyp = 'RMRP'&lt;/P&gt;&lt;P&gt;                and   awkey = h_awkey.&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;  if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;    message id '06' type 'E' number '019' with rbkp-belnr.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  select * from bseg up to 1 rows        "Read accounting document item&lt;/P&gt;&lt;P&gt;                where belnr = bkpf-belnr "with positive vendor line&lt;/P&gt;&lt;P&gt;                and   bukrs = bkpf-bukrs&lt;/P&gt;&lt;P&gt;                and   gjahr = bkpf-gjahr&lt;/P&gt;&lt;P&gt;                and   vorgn = 'RMRP'&lt;/P&gt;&lt;P&gt;                and   koart = 'K'&lt;/P&gt;&lt;P&gt;                and   shkzg = 'S'.&lt;/P&gt;&lt;P&gt;    exit.                                                 .&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;  if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;    message id '06' type 'E' number '019' with bkpf-belnr.&lt;/P&gt;&lt;P&gt;  endif&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 06:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-idoc/m-p/6904391#M1481866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T06:02:07Z</dc:date>
    </item>
  </channel>
</rss>

