<?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: BAPI_ACC_DOCUMENT_CHECK / POST FBB1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523880#M571524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vyerah,&lt;/P&gt;&lt;P&gt;I see that the FM CONVERT_TO_LOCAL_CURRENCY is called in the FORM FI_DOCUMENT_COLLECT, with the following parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
             EXPORTING
                  LOCAL_CURRENCY   = 'EUR'
                  FOREIGN_CURRENCY = 'USD'
                  FOREIGN_AMOUNT   = '100'
                  DATE             = SY-DATUM
                  RATE             = '0.8...'
*               TYPE_OF_RATE     = P_ACC-KURST
             IMPORTING
                  LOCAL_AMOUNT     = H_DMBTR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, since the fact that H_DMBTR isn't space this FORM raises MESSAGE E800. I guess that's because the Local Currency "calculated" isn't zero, as the value I pass in the internal table.&lt;/P&gt;&lt;P&gt;Which settings should I make in OB08?&lt;/P&gt;&lt;P&gt;Many thatnks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GFV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 06:47:13 GMT</pubDate>
    <dc:creator>GFV</dc:creator>
    <dc:date>2007-07-17T06:47:13Z</dc:date>
    <item>
      <title>BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523878#M571522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;we are using BAPI_ACC_DOCUMENT_CHECK / POST to create postings in FI and it works.&lt;/P&gt;&lt;P&gt;The only problem we have is concerning documents with 0 in Local Currency (as if posted with FBB1. Below there is an example of the internal table CURRENCYAMOUNT of the document we are trying to post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ITEMNO_ACC   |CURR_TYPE  |CURRENCY|CURRENCY_ISO|AMT_DOCCUR
000000001    |00         |USD     |            |       100
000000001    |10         |EUR     |            |         0
000000002    |00         |USD     |            |      -100
000000002    |10         |EUR     |            |         0
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We receive the error message F5 800 "Inconsistent currency information"&lt;/P&gt;&lt;P&gt;Did anyboby of you experienced such a problem?&lt;/P&gt;&lt;P&gt;Many thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GFV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 17:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523878#M571522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T17:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523879#M571523</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 is not the BAPI error per se. It is an error from Function Module CONVERT_TO_LOCAL_CURRENCY (called in the BAPI). Make sure that your settings are correct in your configuration Transaction OB08&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 22:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523879#M571523</guid>
      <dc:creator>vyende</dc:creator>
      <dc:date>2007-07-16T22:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523880#M571524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vyerah,&lt;/P&gt;&lt;P&gt;I see that the FM CONVERT_TO_LOCAL_CURRENCY is called in the FORM FI_DOCUMENT_COLLECT, with the following parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
             EXPORTING
                  LOCAL_CURRENCY   = 'EUR'
                  FOREIGN_CURRENCY = 'USD'
                  FOREIGN_AMOUNT   = '100'
                  DATE             = SY-DATUM
                  RATE             = '0.8...'
*               TYPE_OF_RATE     = P_ACC-KURST
             IMPORTING
                  LOCAL_AMOUNT     = H_DMBTR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, since the fact that H_DMBTR isn't space this FORM raises MESSAGE E800. I guess that's because the Local Currency "calculated" isn't zero, as the value I pass in the internal table.&lt;/P&gt;&lt;P&gt;Which settings should I make in OB08?&lt;/P&gt;&lt;P&gt;Many thatnks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GFV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 06:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523880#M571524</guid>
      <dc:creator>GFV</dc:creator>
      <dc:date>2007-07-17T06:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523881#M571525</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;the problem gets solved with OSS Note 1040798 - BAPI_ACC_DOCUMENT_POST: Error message F5 800. It adds an additional check :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF ...
      AND P_ACC-AWTYP NE 'BKPFF'                          "note 1040798
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that prevents the FM CONVERT_TO_LOCAL_CURRENCY execution.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GFV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 07:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523881#M571525</guid>
      <dc:creator>GFV</dc:creator>
      <dc:date>2007-07-17T07:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523882#M571526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OSS Note&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 14:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523882#M571526</guid>
      <dc:creator>GFV</dc:creator>
      <dc:date>2007-07-26T14:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ACC_DOCUMENT_CHECK / POST FBB1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523883#M571527</link>
      <description>&lt;P&gt;Hi &lt;A href="https://answers.sap.com/users/6714/gianfrancovallese.html"&gt;Gianfranco Vallese&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;i got the same issue for the Fourth currency.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;issue&lt;/STRONG&gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;While posting JE invoice getting an error in BAPI_ACC_DOCUMENT_CHECK in s/4 Hana.&lt;/P&gt;&lt;P&gt;There only a problem with Functional/Fourth Currency. Below there is an example of the internal table CURRENCYAMOUNT of the document we are trying to post.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1740481-currency-amount.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;we receive the error &lt;/STRONG&gt;&lt;STRONG&gt;F5 800 "Inconsistent currency information".&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;While search SCN found a similar question discussion but not related to Fourth Currency.&lt;/P&gt;&lt;P&gt;While testing some other Functional currency type we are not getting an error. test cases below example.&lt;/P&gt;&lt;P&gt;sucess:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1740482-currency-amount-success.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 11:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-acc-document-check-post-fbb1/m-p/2523883#M571527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-24T11:00:17Z</dc:date>
    </item>
  </channel>
</rss>

