<?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: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798633#M1123700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use only one currency, don't pass the amount or currency in structure/itab of type BAPIACAR09 (leave those fields blank), only pass them in structure/itab of type BAPIACCR09.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jul 2016 11:50:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-07-29T11:50:11Z</dc:date>
    <item>
      <title>Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798629#M1123696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create an AR invoice. I got the error message ID F5 Number 873: Enter a payment currency different to SGD. Why do I have to change the payment currency ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;      docHeader TYPE BAPIACHE09,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      currAmt_itab TYPE STANDARD TABLE OF BAPIACCR09,&lt;/P&gt;&lt;P&gt;      wa_currAmt_itab TYPE BAPIACCR09,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      AR_itab TYPE STANDARD TABLE OF BAPIACAR09,&lt;/P&gt;&lt;P&gt;      wa_AR_itab TYPE BAPIACAR09,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      GL_itab TYPE STANDARD TABLE OF BAPIACGL09,&lt;/P&gt;&lt;P&gt;      wa_GL_itab TYPE BAPIACGL09,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      returnPara_itab TYPE STANDARD TABLE OF BAPIRET2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh:&lt;/P&gt;&lt;P&gt;      currAmt_itab,&lt;/P&gt;&lt;P&gt;      AR_itab,&lt;/P&gt;&lt;P&gt;      GL_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear :&lt;/P&gt;&lt;P&gt;        wa_currAmt_itab,&lt;/P&gt;&lt;P&gt;        wa_AR_itab,&lt;/P&gt;&lt;P&gt;        wa_currAmt_itab.&lt;/P&gt;&lt;P&gt;move:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       'S001' to docHeader-comp_code,&lt;/P&gt;&lt;P&gt;       '20081129' to docHeader-DOC_DATE,&lt;/P&gt;&lt;P&gt;       '20081129' to docHeader-pstng_date,&lt;/P&gt;&lt;P&gt;       'DR' to docHeader-doc_type,&lt;/P&gt;&lt;P&gt;       'ac_dev29' to docHeader-USERNAME,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        '1' to wa_GL_itab-itemno_acc, "to currAmt&lt;/P&gt;&lt;P&gt;        '0000477000' to wa_GL_itab-gl_account,&lt;/P&gt;&lt;P&gt;        'P3' to wa_GL_itab-tax_code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        '2' to wa_AR_itab-itemno_acc,&lt;/P&gt;&lt;P&gt;        '0000000065' to wa_AR_itab-customer,&lt;/P&gt;&lt;P&gt;        'SGD' to wa_AR_itab-pymt_cur, "to currAmt&lt;/P&gt;&lt;P&gt;        '100' to wa_AR_itab-pymt_amt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND:&lt;/P&gt;&lt;P&gt;         wa_GL_itab to GL_itab,&lt;/P&gt;&lt;P&gt;         wa_AR_itab to AR_itab.&lt;/P&gt;&lt;P&gt;MOVE:&lt;/P&gt;&lt;P&gt;          '1' to wa_currAmt_itab-itemno_acc,&lt;/P&gt;&lt;P&gt;         'SGD' to wa_currAmt_itab-currency,&lt;/P&gt;&lt;P&gt;         '100' to wa_currAmt_itab-amt_doccur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          append wa_currAmt_itab to currAmt_itab.&lt;/P&gt;&lt;P&gt;          clear wa_currAmt_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move:    '2' to wa_currAmt_itab-itemno_acc,&lt;/P&gt;&lt;P&gt;         'SGD' to wa_currAmt_itab-currency,&lt;/P&gt;&lt;P&gt;          '100' to wa_currAmt_itab-amt_doccur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          append wa_currAmt_itab to currAmt_itab.&lt;/P&gt;&lt;P&gt;&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          = docHeader&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUSTOMERCPD             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTRACTHEADER          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJ_TYPE                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJ_KEY                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJ_SYS                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   ACCOUNTGL               = GL_itab&lt;/P&gt;&lt;P&gt;   ACCOUNTRECEIVABLE       = AR_itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ACCOUNTPAYABLE          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ACCOUNTTAX              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CURRENCYAMOUNT          = currAmt_itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CRITERIA                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALUEFIELD              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSION1              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETURN                  = returnPara_itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PAYMENTCARD             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTRACTITEM            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSION2              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REALESTATE              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ACCOUNTWT               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WAIT          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Nov 2008 10:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798629#M1123696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-29T10:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798630#M1123697</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;Can you check the currency for the customer 65 in the master data transaction. It might be having a different currency from SGD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 16:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798630#M1123697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T16:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798631#M1123698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi heloOO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even i am getting the same error, can you help me in case your error was solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;gowri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Apr 2009 11:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798631#M1123698</guid>
      <dc:creator>former_member873340</dc:creator>
      <dc:date>2009-04-05T11:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798632#M1123699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same here. Let us know if you solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 15:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798632#M1123699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-05-16T15:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798633#M1123700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use only one currency, don't pass the amount or currency in structure/itab of type BAPIACAR09 (leave those fields blank), only pass them in structure/itab of type BAPIACCR09.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 11:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798633#M1123700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-07-29T11:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798634#M1123701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct answer given by Declan Barrett...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 06:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/4798634#M1123701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-22T06:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Enter a different payment currency, BAPI_ACC_DOCUMENT_POST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/13956825#M2038052</link>
      <description>&lt;P&gt;This solved my problem, Thankyou&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 02:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter-a-different-payment-currency-bapi-acc-document-post/m-p/13956825#M2038052</guid>
      <dc:creator>BACAGER</dc:creator>
      <dc:date>2024-12-06T02:02:56Z</dc:date>
    </item>
  </channel>
</rss>

