<?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 an document through BAPI_ACC_DOCUMENT_POST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868598#M1476792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah vinod..im not passing anything to import parameters..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nothing is working..tried a lot....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ECC5.0.....is ther note or something related to this BAPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 May 2010 10:40:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-10T10:40:13Z</dc:date>
    <item>
      <title>Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868591#M1476785</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;Im using BAPI_ACC_DOCUMENT_POST bapi to post a parked document ( vendor invoice document ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although BAPI is showing result as successful but the status of that document is not getting updated in table BKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I did commit work and BAPI_TRANSACTION_COMMIT. Still showing status as 'V' - parked doc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the relevance of obj_type field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im using BUS_ACT = 'RFBU'. Is this correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868591#M1476785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868592#M1476786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BUS_ACT = 'RFBU' is correct.  What is the output in RETURN structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:08:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868592#M1476786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868593#M1476787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Check this way&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lw_cab-username   = sy-uname.
lw_cab-doc_type   = 'KR'.
lw_cab-comp_code  = '0001'.
lw_cab-bus_act = 'RFBU'.     &amp;lt;-------------" Is Correct.
lw_cab-obj_type = 'BKPFF'.
lw_cab-obj_key = '190000032000012007'.
lw_cab-obj_sys = 'HRDCLNT100'.
 
 
* I only want to modify this field.
lw_cab-ref_doc_no = 'NEW'.
 
 
CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
    EXPORTING
      documentheader = lw_cab
    IMPORTING
      obj_key        = l_obj
    TABLES
      currencyamount = li_currencyamount
      return         = li_return&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868593#M1476787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868594#M1476788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the ruturn msg is "Document posted successfully: ZBKPF 0900000140007 2009 DPA003".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im trying different entried in OBJ_TYPE from its master table TTYP, but still not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJ_TYPE  = 'BKPF' / 'BKPFF' / 'BKPFI' , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its giving error as incorrect enrty in obj_type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868594#M1476788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868595#M1476789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check IBKPF&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:25:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868595#M1476789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868596#M1476790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Check with &lt;STRONG&gt;IBKPF&lt;/STRONG&gt;
For For vendor posting 'BKPFF', also if you set a different year or 
period from the value that you have in the posting date you might get this error&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:26:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868596#M1476790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868597#M1476791</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;Don't pass anything in Import parameters (OBJ_TYPE,OBJ_KEY,OBJ_SYS) if your SAP version is ECC5 or above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868597#M1476791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868598#M1476792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah vinod..im not passing anything to import parameters..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nothing is working..tried a lot....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ECC5.0.....is ther note or something related to this BAPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868598#M1476792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868599#M1476793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Check OSS notes  &lt;STRONG&gt;561175&lt;/STRONG&gt;, &lt;STRONG&gt;938165&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868599#M1476793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868600#M1476794</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;Are you getting "0900000140007" document in BKPF ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 10:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868600#M1476794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T10:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868601#M1476795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes Vinod...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually the doc im trying to post is 90000006 007 2010, status = 'V'&lt;/P&gt;&lt;P&gt;and it was recreation of the doc 9000000140 007 2009, status 'W'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in the result its showing the object key which is same as earlier doc with status = 'W'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suggest me pls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hv tried the checked above given notes also they r already apllied in system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 11:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868601#M1476795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T11:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Posting an document through BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868602#M1476796</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;Are you filling the reference parked document number details to following structure fields while calling BAPI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;documentheader-AC_DOC_NO&lt;/P&gt;&lt;P&gt;documentheader-FISC_YEAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 12:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/posting-an-document-through-bapi-acc-document-post/m-p/6868602#M1476796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T12:09:58Z</dc:date>
    </item>
  </channel>
</rss>

