<?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: POSTING_INTERFACE_DOCUMENT - too many lines error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001799#M1344420</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u plz explore on ur soln.&lt;/P&gt;&lt;P&gt;I didnt get dat logic of adding technical acc n addn of line with an amount and then cancel it.&lt;/P&gt;&lt;P&gt;Do u mena adding field technical acc in my final table b4 updating it thru BAPI or sumthing else.&lt;/P&gt;&lt;P&gt;I have not understand it properly.Plz throw some light on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Aug 2009 11:19:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-05T11:19:46Z</dc:date>
    <item>
      <title>POSTING_INTERFACE_DOCUMENT - too many lines error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001796#M1344417</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;&lt;/P&gt;&lt;P&gt;I am using BAPI POSTING_INTERFACE_DOCUMENT for posting.&lt;/P&gt;&lt;P&gt;This BAPI has a restriction for 950 lines posting at a time.&lt;/P&gt;&lt;P&gt;But user wants to post it for more than 3000 lines at a time.&lt;/P&gt;&lt;P&gt;What should be the possible solution for it other than asking the user to split the file and post it.&lt;/P&gt;&lt;P&gt;Can anyone please tell me is it possible by some way to increase the no. of lines which is 950 in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 10:38:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001796#M1344417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-05T10:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: POSTING_INTERFACE_DOCUMENT - too many lines error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001797#M1344418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field BSEG-BUZEI has only three digits, and SAP reserves some lines, so you should not be able to force the data (else duplicate rows when BUZEI = 999 + 1 = 0...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may programmatically use a "technical account", when the number of lines reach 949, you add a line on this account with an amount that balance the other items (if not already balanced) . Don't forget to cancel the balance of this account on the last block of items (if not already zeroed). Nevertheless you will got more than one document, but user don't have to manage the size of their documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 10:45:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001797#M1344418</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-05T10:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: POSTING_INTERFACE_DOCUMENT - too many lines error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001798#M1344419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Anilsagrawal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can store first 950 lines in one internal table&lt;/P&gt;&lt;P&gt;Then Call FM  &lt;STRONG&gt;POSTING_INTERFACE_DOCUMENT&lt;/STRONG&gt; in the same program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next 950 lines in another internal table...&lt;/P&gt;&lt;P&gt;Then Call FM  &lt;STRONG&gt;POSTING_INTERFACE_DOCUMENT&lt;/STRONG&gt; in the same program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next 950 lines in another internal table...&lt;/P&gt;&lt;P&gt;Then Call FM  &lt;STRONG&gt;POSTING_INTERFACE_DOCUMENT&lt;/STRONG&gt; in the same program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Repeat it untill your all records(3000) get processed ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can copy FM &lt;STRONG&gt;POSTING_INTERFACE_DOCUMENT&lt;/STRONG&gt; and modify according to your requirement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 11:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001798#M1344419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-05T11:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: POSTING_INTERFACE_DOCUMENT - too many lines error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001799#M1344420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u plz explore on ur soln.&lt;/P&gt;&lt;P&gt;I didnt get dat logic of adding technical acc n addn of line with an amount and then cancel it.&lt;/P&gt;&lt;P&gt;Do u mena adding field technical acc in my final table b4 updating it thru BAPI or sumthing else.&lt;/P&gt;&lt;P&gt;I have not understand it properly.Plz throw some light on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 11:19:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001799#M1344420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-05T11:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: POSTING_INTERFACE_DOCUMENT - too many lines error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001800#M1344421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically you post documents of 950 lines, but you must add a "dummy" item to balance the documents. User did balance the document of 3000 items, but subset of 950 lines are not balanced (debit = credit)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 11:21:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-interface-document-too-many-lines-error/m-p/6001800#M1344421</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-05T11:21:01Z</dc:date>
    </item>
  </channel>
</rss>

