Error 16 : unable to balance intercopany transaction

Hi,
Our client using oracle 11i, with inter company segment and auto inter company journal balance. but some of journal batch not balance automatic.
for example
Column name
1. Legal entity 2 .inter company 3. Dr 4. CR
013 014 2,486 0
014 000 107,184 247,266
014 118 1,795 0
020 014 1,368 0
027 014 2,238 0
028 014 1,186 0
118 000 7,021 8,817
464 014 37,756 0
473 014 12,539 0
565 014 6,599 0
569 014 37,625 0
574 014 38,285 0
total 256,082 256,082
According to me its done due to 3rd row( i.e 014 118 1,795 0)
is it error created due to wrong set up for auto inter company balance? if it yes , then please suggest setup

Hi
Please review the following note in metalink and see if it helps:
R12: Error16 Unable To Balance Intercompany Accounts [ID 460694.1]
Thanks
Manish Jain

Similar Messages

  • Error 16: Unable to balance intercopany

    Hi,
    Our client using oracle 11i, with inter company segment and auto inter company journal balance. but some of journal batch not balance automatic.
    for example
    Column name
    1. Legal entity 2 .inter company 3. Dr 4. CR
    013     014     2,486     0
    014     000     107,184     247,266
    014     118     1,795     0
    020     014     1,368     0
    027     014     2,238     0
    028     014     1,186     0
    118     000     7,021     8,817
    464     014     37,756     0
    473     014     12,539     0
    565     014     6,599     0
    569     014     37,625     0
    574     014     38,285     0
         total     256,082     256,082
    According to me its done due to 3rd row( i.e 014     118     1,795     0)
    is it error created due to wrong set up for auto inter company balance? if it yes , then please suggest setup

    Hi
    Please review the following note in metalink and see if it helps:
    R12: Error16 Unable To Balance Intercompany Accounts [ID 460694.1]
    Thanks
    Manish Jain

  • Error FI/CO interface: Balance in transaction currency from BAPI BAPI_ACC_DOCUMENT_POST

    Hi All,
    We are facing error FI/CO interface: Balance in transaction currency from BAPI BAPI_ACC_DOCUMENT_POST.
    This error we are getting only in case of passing tax data.
    Can anyone help me on this.
    Below is the code :
       *fill header
    gd_documentheader-username   =  sy-uname.
    gd_documentheader-header_txt = 'Test'.
    gd_documentheader-comp_code  = p_ccode.   "SQ
    gd_documentheader-doc_date   =  sy-datum.
    gd_documentheader-pstng_date =  sy-datum.
    gd_documentheader-doc_type   = 'KR'.
    gd_documentheader-ref_doc_no = p_xblnr. "SQ
    *gd_documentheader-bus_act = 'RMWE'.
    city = p_city.
    state = p_state.
    zipcode = p_zip.
    *get tax juridisction code
    IF NOT ( city     IS INITIAL ) AND
       NOT ( state    IS INITIAL ) AND
       NOT ( zipcode IS INITIAL ).
      SELECT SINGLE rfcdest INTO ttxd-rfcdest FROM ttxd
       WHERE kalsm = 'TAXUSX'.
      CLEAR x_com_jur.
      REFRESH t_com_jur.
      x_com_jur-city     =  city.
      x_com_jur-state    =  state.
      IF zipcode+5(4) EQ space.
        zipcode+5(4) = '0000'.
      ENDIF.
      CONCATENATE zipcode+0(5) '-' zipcode+5(4)
             INTO x_com_jur-zipcode.
      x_com_jur-country  = 'US'.
      CALL FUNCTION 'RFC_DETERMINE_JURISDICTION'
        DESTINATION ttxd-rfcdest
        EXPORTING
          location_data    = x_com_jur
        IMPORTING
          location_err     = x_com_err
        TABLES
          location_results = t_com_jur.
      IF sy-subrc = 0.
        READ TABLE t_com_jur INTO x_com_jur INDEX 1.
        it_accountgl-taxjurcode =  x_com_jur-txjcd.
      ENDIF.
    ENDIF.
    *fill AP (line 1) - vendor related data
    SELECT SINGLE zterm FROM lfb1 INTO p_zterm WHERE lifnr = p_lifnr.
    it_accountpayable-itemno_acc = 1.
    it_accountpayable-tax_code = p_txcd.
    it_accountpayable-pmnttrms   = p_zterm. "SQ
    it_accountpayable-vendor_no  = p_lifnr. "SQ
    *it_accountpayable-item_text = 'S2P Testing in UDR1'. - SQ
    it_accountpayable-pymt_meth = p_pmet. "- SQ
    APPEND it_accountpayable.
    *fill GL (line 2)
    it_accountgl-itemno_acc      =  2.
    *item_text - sq
    IF p_asset IS NOT INITIAL.
      TABLES : anlz,
               anla.
      SELECT SINGLE * FROM anlz  WHERE anln1 = p_asset.
      SELECT SINGLE * FROM anla WHERE anln1 = p_asset.
    *concatenate '00' anla-KTOGR into it_accountgl-gl_account .
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = anla-ktogr
        IMPORTING
          output = it_accountgl-gl_account.
      it_accountgl-asset_no = p_asset.
      it_accountgl-sub_number = '0000'.
      it_accountgl-cs_trans_t = '105'.
      it_accountgl-acct_type = 'A'.
    ELSE.
      it_accountgl-gl_account      = p_gl.
      it_accountgl-costcenter      = p_cc.
      it_accountgl-wbs_element     = p_posid.
    ENDIF.
    it_accountgl-comp_code       = p_ccode.
    it_accountgl-tax_code = p_txcd.  "SQ
    it_accountgl-pstng_date      =  sy-datum.
    it_accountgl-fisc_year       =  sy-datum(4).
    APPEND it_accountgl.
    CLEAR it_currencyamount.
    *fill currency ammounts for lines 1 & 2
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-itemno_acc  = 1.
    *it_currencyamount-amt_base =  -1.
    it_currencyamount-amt_doccur  = - 116. "p_totamt.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    it_currencyamount-tax_amt  = - 16.
    APPEND it_currencyamount.
    CLEAR it_currencyamount.
    it_currencyamount-itemno_acc  = 2.
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-amt_doccur  = 100.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    *it_currencyamount-amt_base =  100.
    *it_currencyamount-TAX_AMT =  -10.
    APPEND it_currencyamount.
    *tax data
    it_accounttax-itemno_acc = 3.
    it_accounttax-tax_code = p_txcd.
    it_accounttax-gl_account = '0023110000'.
    *it_accounttax-gl_account = p_gl.
    it_accounttax-TAXJURCODE = x_com_jur-txjcd.
    it_accounttax-acct_key = 'NVV'.
    it_accounttax-cond_key = 'XP2I'.
    **it_accounttax-direct_tax = 'X'.
    APPEND it_accounttax.
    CLEAR it_currencyamount.
    it_currencyamount-itemno_acc  = 3.
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-amt_doccur  = 16.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    it_currencyamount-amt_base =  100.
    it_currencyamount-TAX_AMT =  - 16  .
    APPEND it_currencyamount.
       CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = gd_documentheader
    IMPORTING
       obj_key                 = wa_obj_key
      TABLES
       accountgl               = it_accountgl
    *   ACCOUNTRECEIVABLE       =
       accountpayable          = it_accountpayable
       accounttax              = it_accounttax
        currencyamount          = it_currencyamount
    *   CRITERIA                =
    *   VALUEFIELD              =
    *   EXTENSION1              =
        return                  =  it_return
    COMMIT WORK.
    Regards,
    Priyaranjan

    Hi,
    Reason 1:
    An revenue-recognition-relevant item has several active conditions whose values cancel themselves so that a net item value of 0 results. The conditions have both the same revenue account (SAKN1) and the same clearing account (SAKN2).
    For these conditions, the system writes a line with value 0 into the temporary FI/CO interface (internal tables: CACCIT, CACCCR). If table VBREVK does not contain control lines for this line, no further processing occurs and the line remains in the temporary FI/CO interface. Then the system reads this line for the creation of the next billing item which conatins a net value and generates a posting line with value 0. As a result, there is a balance in the FI/CO interface, and the billing document cannot be transferred.
    Reason 2:
    The billing document contains at least one item with an item category for which there is a setting stipulating that the values of this item should not be transferred to the header total of the document.
    That is, in the maintenance of the item categories, this item category has the characteristic 'X' or 'Y' in 'Statistical value' field.
    Reason 3:
    Case: Billing document contains items without pricing conditions.
    Then, on release to accounting, error RW022 occurs.
    regards,
    Saju.S

  • Error 16 Unable to Balance Intercompany Accounts

    Hi Guys
    Have you come across this error before (Error 16 Unable to Balance Intercompany Accounts) and how do i correct this ?
    Balwinder

    Hi
    Please review the following note in metalink and see if it helps:
    R12: Error16 Unable To Balance Intercompany Accounts [ID 460694.1]
    Thanks
    Manish Jain

  • Balance in transaction currency error in sap j1iin

    Hi,
    I am facing an error during creation of excise of 'balance in transaction currency error in sap j1iin'.But when we are creating EI in background the system is not getiing the error of Balance in transaction currency error.
    We have applied the Note# 1018071 - Error "Balance in transaction currency" (F5702) in J1IIN has been applied. This covers the correction for note # 978186.
    But the system is still giving me the error in forground.
    I have the serach the forum:
    1-Excise Invoice Error In J1IIn
    2-Balance in transaction currency error in J1iin
    But unable to find the solution.Kindly guide me on this.
    Regards
    Rajev

    Hi Srinath,
    Thanks For Reply.
    Please find my comment on above points:
    1-SPRO -> Logistics - General -> Tax on Goods Movements -> India -> Basic Settings -> Maintain Company Code Settings. In the Company Code check wheather Rounding rule is on or off.If it is off , change it to on and then run again.
    **I have make the rounding rule on for outgoing excise Invoice**
    2) SPRO->Excise config->Business transaction-> Utilization-> in utilization you have 2 options First option is Utilization Determination & another one is Maintain minimum Balances for Excise Account.Change the Utilization Determination to 100
    I have maintained the setting as per  below:
    For Utilization Determination
    L1     PLAAT1 PLA AT1 account     100     
    L1     PLABED PLA BED account     100     
    L1     PLACESS PLA cess account     100     
    L1     RG23AAT1 RG 23A AT1 account     100     
    L1     RG23ABED RG 23A BED account     100     
    L1     RG23AECS RG 23A ECS account     100     
    L1     RG23CAT1 RG 23C AT1 account     100     
    L1     RG23CBED RG 23C BED account     100     
    L1     RG23CECS RG 23C ECS account     100     
    Maintain Balances
    L1     PLAAT1 PLA AT1 account     100,000.00
    L1     PLABED PLA BED account     100,000.00
    L1     PLAECS PLA ECS account     100,000.00
    L1     RG23AAT1 RG 23A AT1 account     100,000.00
    L1     RG23ABED RG 23A BED account     100,000.00
    L1     RG23AECS RG 23A ECS account     100,000.00
    L1     RG23CAT1 RG 23C AT1 account     100,000.00
    L1     RG23CBED RG 23C BED account     100,000.00
    L1     RG23CECS RG 23C ECS account     100,000.00
    3) Also check IMG->Logistics General- >Tax on Goods Movements->India->Account Determination->Specify Excise Accounts per Excise Transaction.
    Check all the ETT having the ECS and Secondary Education Cess.
    But still facing the same error.Could please guide me on this.
    Thanks for Your responce.
    Reagrds
    Rajev.

  • Unable to load the transactions"

    Hi All,
    I have established the JCO connection between SAP and xMII. However, in the Routing Rules tab of iDOC listener, I am getting the error as " Unable to load the transactions"
    Can anyone help me in this?
    Best Regards,
    Ajit Dubal.

    Hi,
      It is not some default transaction. But it would have been set by someone in it. So I don't know the details. Please check the JCO log file if it can help.
    Here <b>IDOC_XMII</b> is the iDocListener. So match server name with ur Listener name.
    C:\Lighthammer\JCO\jcoservers.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    - <Servers>
    - <Server name="<b>IDOC_XMII</b>">
      <ServerProps gwhost="xxx" gwserv="sapgw00" progid="IDOC_XMII" trace="1" unicode="0" />
      <ClientProps ashost="xxx" client="xxx" lang="en" passwd="xxx=" sysnr="xx" user="xxx" />
      <Routing>
      <Rule input="Input_Material" legacy="false" msgtype="*" password="" path="C:/Lighthammer/JCO/Output/" server="localhost" <b>transaction="training/bapi_mat"</b> username="" />
      </Routing>
      </Server>
    <Servers>
    Regards,
    Harini S

  • Balance in transaction currency F5 702 when posting from SD invoice VF04

    When posting message from VF04 or VF02, can not release to accounting.
    Balance in transaction currency
    Message no. F5 702
    Diagnosis
    A balance has occurred in transaction currency 'USD' with the following details:
    Exchange rate '00', amount ' 1,000-' and currency key 'USD'.
    The data in the transaction currency were transferred from the calling application.
    4.6c release.
    Sales org, company code, customer have currency USD.
    In the header of invoice, posting status is "Error in Financials Interface". G.L. account is configured and can be posted.
    Any suggestions is appreciated.

    Hi,
      I am getting same error message problem while releasing billing doc from VF02.
      did you resolve the same please let me know how u did it.. i have gone throu user exit u mentioned but in my project those
      User exits are not using.. pls give reply ASAP..
      Getting below error message..
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'USD' with the following details:
    Exchange rate '00', amount '         5,494.00' and currency key 'USD'.
    The data in the transaction currency were transferred from the calling application.
    System Response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application.

  • Unable to authorize your transaction, but money deducted from account

    Hello, While placing an order for Thinkpad T450s, I received an error message - "Unable to authorize your transaction. Please select another payment method to complete your order.". However, the order amount ($1431) was debited from my account. I have not received a mail pertaining to failure/confirmation from Lenovo after the error message. Please advise the steps to be taken from this point. Best Regards,Ankit Gupta

    Ankit, Please PM your email and order number (if you have one) and I will work to understand the issue. 

  • Error while saving Excise Invoice- 'Balance in transaction currency'

    Hi to all.
          I am using TAXINN taxing procedure.Recently I applied notes for S&H cess legal changes. Everything working fine. But when I try to save excise Invoice system throws the following error. Amount Rs.53 is S&H Cess. If i removed condition type from pricing document is posted.So, can anybody tell me what settings to be made to correct this error?
    Error message:
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'INR' with the following details:
    Exchange rate '00', amount '            53.00' and currency key 'INR'.
    The data in the transaction currency were transferred from the calling application.
    System response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application

    Dear Siva,
    Please refer Master OSS note# 1032265-- Higher Education Changes.
    May it wil help you to resolve ur problem.
    Regards,
    Venkat

  • Error when reversing settlement back to Auc - Balance in transaction curren

    Hi,
    We get following error when reversing a settlement from asset back to Auc (using AIST):
    FI/CO interface : Balance in transaction currency
    Message No. RW022
    This error only occurs when we settle a portion of the amount sitting in AuC and not the full amount. (When we settle full amount in AuC to final asset we can reverse no problem).
    When we do a partial settlement to final asset, SAP creates a document and in that document it posts a debit and credit for the unsettled amount e.g. 50k in Auc and we settle 45k to final asset with 5k remaining in Auc -  the document looks as follows
    AuC     5,000.00-
    Auc      5,000.00
    AuC    45,000.00
    Final Asset    25,000.00-
    Final Asset    20,000.00-
    The 5k above is the unsettled amount still sitting in AuC
    When we try reverse we get error message RW022 and detail is as follows:
        The balances in transaction currency must be zero for each logical
        transaction when transferring to the FI/CO interface. A balance of "
        5,000.00-" "CAD" was determined for the logical transaction "AZVZ".
    System Response
        The FI/CO interface does not process any transactions which have a
        balance in transaction currency other than zero.
    Procedure
        This is a system error of the calling application.
    Note:  We do use line item settlement in asset classes
    Much appreciate any help..

    Hello,
    You may need to check SAP notes below regarding this issue:
    1523814   Transaction AIST ends with error RW 022
    1514384   Error message RW 022 after Note 1444750 implem
    1444750   Postings without transaction currency
    I hope it helps.

  • Error in Balance in transaction currency

    Hi Friends,
    I am getting the following error while saving the Excise Invoice(Domestic)
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'INR' with the following details:
    Exchange rate '00', amount ' 60.000' and currency key 'INR'.
    The data in the transaction currency were transferred from the calling application.
    System Response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application.
    Please help me...
    With regards

    Hi,
    Please check the following threads which are frequently asked
    Balance in transaction currency
    Excise Invoice Error In J1IIn
    Balance in transaction currency
    Also check the following note
    Note 763141 - Error: Balance in transaction currency - J1IEX
    Regards,
    Jigar

  • Error in transaction ASKB - Balance in transaction currency

    Hi
    When i am executing transaction ASKB im getting the error:
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'EUR' with the following details:
    Exchange rate '00', amount '     1,953,936.19' and currency key 'EUR'.
    The data in the transaction currency were transferred from the calling application.
    System response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application.
    Can anybody help me in same.
    Thanks and Regards
    Megha

    Hi Chris,
    have you checked the last answer from Raja,?
    Derived depreciation areas could no handle APC differences unless you  activate the indicator "Treat Derived Depreciation Area As Real Area"  under the following menu:                                                                               
    SPRO -> Asset Accounting -> Valuation -> Depreciation Areas -> Define Depreciation Areas).                                                                               
    If you set this indicator, then the system posts the real difference. If  you would like to apply this indicator you have to complete the account  assignment in the configuration, too.                                                                               
    You can switch the derived area from a special reserves area to a  "handled as real" area in transaction OADB. There is no other possibility to get the derived area post APC differences, which you definitely have on some assets.                                                                               
    Please also review and apply the following Notes:     
    759890   Depreciation run ends with error F5 702      
    1094330  F5 702 with retirement on group asset        
    1024598  Incorrect values with repeated simulation 
    Regards Bernhard

  • HT4790 My Mac OS Lion 10.7 FileVaulted HD does not boot, prohibitory sign, stop sign appears some minutes after boot starts. Disk Utility repair shows four error messages: Unable to bootstrap transaction group 2517: inconsistent crosscheck (the same with

    My Mac OS Lion 10.7 FileVaulted HD does not boot, prohibitory sign, stop sign appears some minutes after boot starts. Disk Utility repair shows four error messages:
    Unable to bootstrap transaction group 2517: inconsistent crosscheck
    No valid commit checkpoint found
    The volume xxxxxxxxxxxxxx(here it shows physical volume number) was found corrupt and can not be repaired.
    Problems were encountered during repair of the partition map
    Error: Storage system verify or repair failed.
    (the same with 2518, 2519 and 2520 transaction group)
    I suppose it is serious bug in Mac OS Lion managing FileVault and wonder what the help could be?

    Most likely culprit is your Lacie drives which are notorious for flaky power supplies which cause just the sort of erratic behaviour that you describe. Have had similar issues myself. Lacie has been good about replacing my power converter-- twice. If you have seven of them, good luck finding the bad one or more. Like I said, the behaviour is erratic. Sometimes it'll work sometimes not. I can't comment on Samsung drives because I've never used them and have never heard anything about them. Same with Softraid. Why not just use Disk Utility. Sounds like you're ready for an external hardware raid. This will be much faster, much more reliable, and may even be cheaper than seven firewire drives. Check out G Tech, and Maxx Digital for starters.
    Best of luck
    Terry

  • Error "Balance in transaction currency" using T.code J1iex

    Hello all,
                When i am capturing an excise invoice using T.code J1iex, the excise invoice is getting captured, but when we are trying to post the vendor using the same T.code j1iex,it is giving an error"Balance in transaction currency". Please help me and try to solve my problem asap.

    Hai,
    1.Flag the check box for rounding duty on procurement in IMG - Logisitics general - Tax on goods & mvts - India - Basic settings - Company code settings.
    2. Manually round off the excise values to next value in J1IEX - Change mode - item level - excise values.

  • Balance in transaction currency error for AUC settlement

    I was trying to perform AUC settlement and hit Balance in transaction currency error. When i open up the line items I found that there are 2 sets (duplicate) of data posted to the depreciation area. The second set is with value 0 except depreciation area 01 posted as 100000EUR.
    so now i have 2 line with 100000EUR for depreciation area 01. I guess this is the main culprit of generating the error Balance in transaction currency.
    I'd glad if someone can tell me why they are 2 sets of data generated in line items? I only post the vendor invoice against the AUC once.
    Or perhaps am I heading to the right way in identifying the root cause of this issue?
    This is part of the AC010 course part of asset accounting that teaching on AUC aasets.
    Any positive reply is welcomed!
    I attached the line item image. Please note that there are some lines hidden for dep area beyond 03. and all are with amount 0.
    [Line Item Image|http://www.bnl.com.my/photos/aucsettle.jpg]
    Edited by: Kam Weng Leong on Dec 13, 2009 5:00 AM

    I was trying to perform AUC settlement and hit Balance in transaction currency error. When i open up the line items I found that there are 2 sets (duplicate) of data posted to the depreciation area. The second set is with value 0 except depreciation area 01 posted as 100000EUR.
    so now i have 2 line with 100000EUR for depreciation area 01. I guess this is the main culprit of generating the error Balance in transaction currency.
    I'd glad if someone can tell me why they are 2 sets of data generated in line items? I only post the vendor invoice against the AUC once.
    Or perhaps am I heading to the right way in identifying the root cause of this issue?
    This is part of the AC010 course part of asset accounting that teaching on AUC aasets.
    Any positive reply is welcomed!
    I attached the line item image. Please note that there are some lines hidden for dep area beyond 03. and all are with amount 0.
    [Line Item Image|http://www.bnl.com.my/photos/aucsettle.jpg]
    Edited by: Kam Weng Leong on Dec 13, 2009 5:00 AM

Maybe you are looking for

  • Complaints & Sales Returns

    Dear All, Whenever Post goods receipt is done for the return sales order,if the material is activated for returns inspection (Inspection type 06) every time inspection lot gets generated.But what i want is inspection lot shd get generated only when i

  • What is meant by "Video Sample Size = 24 bit"?

    In the video properties for a XVID file you can see "Video Sample Size 24 bit" included with bitrate, frame size, but "file size in MB or GB" omitted. What is this Video Sample Size? Is it the same as "bit depth, also known as color depth" that relat

  • How to Install Spry for CS4?

    Hello, First off, sorry for such a newb question, but... I'm using Dreamweaver CS4. I've been reading about Spry and it sounds very interesting. I'm unclear on what I need to do to install and use it with Dreamweaver. I've downloaded the 1.6.1 versio

  • Brightness inconsistent on certain TVs

    I've finished color correcting a short film I shot and am having a problem. Three of the scenes are somewhat dark. After getting the levels where I want them, it looks dark on my cinema display and lighter on my external monitor. Now when I put it on

  • MacBook Pro (Retina, 15-inch, Late 2013) no microphone?

    Hi I have a superb MBP which I am chuffed with but I want to transfer my vinyl and tapes to the Mac and there is no microphone socket? What to do? C