<?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: F-02 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412927#M1048513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aruna,&lt;/P&gt;&lt;P&gt; Posting Key Field is handled in this BAPI by the currency amount sign [+/-] so you need not enter posting key values here just take care of sign whenever you are entering amount&lt;/P&gt;&lt;P&gt;+100/-100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Sep 2008 05:32:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-19T05:32:09Z</dc:date>
    <item>
      <title>F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412918#M1048504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;  I want to Use BAPI_ACC_DOCUMENT_POST for transaction 'f-02'  for posting keys 40 and 15 .But i am not able to execute the BAPI.Can u please provide what are th fields to be filled to execute it successfully.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 09:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412918#M1048504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T09:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412919#M1048505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about RFBIBL00?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 09:42:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412919#M1048505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T09:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412920#M1048506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ensure you are passing the RETURN table parameter and check its contents after the call to the FM. It will give you messages about what fields are missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if you haven't already got it, you will need to call BAPI_TRANSACTION_COMMIT after your FM call.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 09:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412920#M1048506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T09:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412921#M1048507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check below code and see whether you are using all the below data...&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          documentheader = lw_documentheader&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          obj_type       = lv_obj_type&lt;/P&gt;&lt;P&gt;          obj_key        = lv_obj_key&lt;/P&gt;&lt;P&gt;          obj_sys        = lv_obj_sys&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          accountgl      = it_accountgl&lt;/P&gt;&lt;P&gt;          currencyamount = it_currencyamount&lt;/P&gt;&lt;P&gt;          return         = it_return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 09:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412921#M1048507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T09:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412922#M1048508</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;Its depends on your company's functional configuration. Try to crate a record using transaction code and check all the mandatory fields..make sure you are passing all the mandatory fields from your bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 09:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412922#M1048508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T09:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412923#M1048509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;   when i am executing  BAPI_ACC_DOCUMENT_POST'  getting error as 'Balance in transaction currency'.can u please suggest what is the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 13:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412923#M1048509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T13:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412924#M1048510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be data for transactional currency is missing while using the FM..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 13:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412924#M1048510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T13:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412925#M1048511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; This error occurs if you have not balanced the line item amount,for e,g in first line if you have currency amount 50 then you need to balance it by giving -50 on the second line the sum should be zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 13:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412925#M1048511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412926#M1048512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Actually my requirement is to do general posting using tcode 'F-02' .In this i have to give posting keys 40--Debit and 15-incoming payments of customer .But using BAPI_ACC_DOCUMENT_POST am not able to give the required data.That is in transaction for pstkey 15 i am giving customer number in account field .But am not able to give the data through bapi.so can u please suggest how to give the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 05:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412926#M1048512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T05:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: F-02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412927#M1048513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aruna,&lt;/P&gt;&lt;P&gt; Posting Key Field is handled in this BAPI by the currency amount sign [+/-] so you need not enter posting key values here just take care of sign whenever you are entering amount&lt;/P&gt;&lt;P&gt;+100/-100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 05:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f-02/m-p/4412927#M1048513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T05:32:09Z</dc:date>
    </item>
  </channel>
</rss>

