<?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 FI document  posting  through BDC.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092493#M978610</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 want to post a FI document through BDC. i've an excel file  like this,&lt;/P&gt;&lt;P&gt;&lt;U&gt;podate&lt;/U&gt;     &lt;U&gt;curr&lt;/U&gt;    &lt;U&gt;accno&lt;/U&gt;       &lt;U&gt;amount&lt;/U&gt;&lt;/P&gt;&lt;P&gt;1/1/2007	rmb	10067	100.58-&lt;/P&gt;&lt;P&gt;1/20/2007	rmb	10068	120.68&lt;/P&gt;&lt;P&gt;1/2/2007	rmb	10069	20.1-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the net amt is 0 then we have post the document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to post  all the  items as a single document thru BDC? &lt;/P&gt;&lt;P&gt;if possible then give some example code.&lt;/P&gt;&lt;P&gt;please help me regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt; nag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 09:34:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T09:34:18Z</dc:date>
    <item>
      <title>FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092493#M978610</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 want to post a FI document through BDC. i've an excel file  like this,&lt;/P&gt;&lt;P&gt;&lt;U&gt;podate&lt;/U&gt;     &lt;U&gt;curr&lt;/U&gt;    &lt;U&gt;accno&lt;/U&gt;       &lt;U&gt;amount&lt;/U&gt;&lt;/P&gt;&lt;P&gt;1/1/2007	rmb	10067	100.58-&lt;/P&gt;&lt;P&gt;1/20/2007	rmb	10068	120.68&lt;/P&gt;&lt;P&gt;1/2/2007	rmb	10069	20.1-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the net amt is 0 then we have post the document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to post  all the  items as a single document thru BDC? &lt;/P&gt;&lt;P&gt;if possible then give some example code.&lt;/P&gt;&lt;P&gt;please help me regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt; nag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092493#M978610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092494#M978611</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;U can use the BI std RFBIBL00: it needs a file with the data to generate BDC session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file is structurated in according to the std structure BGR00, BBKPF and BBSEG:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- BGR00 has the data for the session;&lt;/P&gt;&lt;P&gt;- BBKPF has the header data;&lt;/P&gt;&lt;P&gt;- BBSEG has the item data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know the mean of the data field, perhaps it's due date(?), anyway if the total amount is zero:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OPEN DATASET &amp;lt;FILE&amp;gt; IN TEXT MODE. 

-&amp;gt; Fill BGR00
TRANSFER BGR00 TO &amp;lt;FILE&amp;gt;.
-&amp;gt; Fill BBKPF
TRANSFER BBKPF TO &amp;lt;FILE&amp;gt;.

LOOP AT FILE.
---&amp;gt; Fill BBSEG.
  TRANSFER BBSEG TO &amp;lt;FILE&amp;gt;. 
ENDLOOP.

CLOSE DATASET &amp;lt;FILE&amp;gt;.

SUBMIT RFBIBL00 WITH DS_NAME = &amp;lt;FILE&amp;gt;
                             WITH CALLMODE = 'B' AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092494#M978611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092495#M978612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it's not too late, don't even start with BDC, use BAPI_ACC_DOCUMENT_POST instead.&lt;/P&gt;&lt;P&gt;You can post up to 999 items in one document.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092495#M978612</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-07-09T09:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092496#M978613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;my requirement is to do with BDC only ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Is it  possible through BDC or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt; nag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092496#M978613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092497#M978614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yaa it is possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:49:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092497#M978614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: FI document  posting  through BDC....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092498#M978615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u told check this,&lt;/P&gt;&lt;P&gt;but u didn't find any thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:08:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fi-document-posting-through-bdc/m-p/4092498#M978615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:08:08Z</dc:date>
    </item>
  </channel>
</rss>

