Currency transaltion error

Hi ,
I have formula
if( curtype =30, debit , 0).
we hve io periodic local currency, periodice transaction currency,periodic value in group currency in bi.
which are mapped with
group currency key,currency type, 0debit.
when we see the data the objects periodic value in group currency its showing all 0's and only one value 22.0000.
I checked in ecc the data is there in the data source.
can you please suggest me any solution.
Data is comming from dso to cube.
can you please propose me some solution for populate the data.
Thanks
chaituu

So you have one line with three key figures showing the individual currency values and no curr type?
If this is the case you have two options.. one dissaggrate the data onload to generate the three lines or create a formula vairbale called currency type which you then use like the following
if forumla variable = 10 then use local currency, elseif formula variable - 20 use group currency else use documetn currency
(using the std boolean logic in bex CKFs)

Similar Messages

  • Message no. 06211 Currency translation error in net price calculation

    Hi,
       When i am creating purchase order i am changing currency from INR to JPY for FOB condition type only, And system issuing error message Currency translation error in net price calculation. Document currency is INR.
    When i am using USD i am not getting this error.
    I have checked table OB08 and both conversion maintained INR to JPY AND JPY to INR valid from 01.01.2012
    Any solution for this please.
    Thanks in advance.

    Hi, Check in T-code M/08 for your import prizing procedure,what have you maintained for subtotal for gross price condition (PBXX,PB00), Maintain over there as '9', also for JPY currency there is issue with decimal also, ratio maintained in 100:1 ratio.
    Edited by: tej yadav on Jan 6, 2012 1:29 PM

  • Currency conversion Error in 0sd_c15

    Hello Experts,
       I am having a problem in the ETl of the cube 0SD_C15 .Its showing Currency conversion error
    0MEANTODAY while loading data.Please help me in this regard
    Prasad

    Hi
    You will find the transfer global settings for the source system where you are extracting the data.
    Select the source sytem, right click,go to transfer gloabal settings, (select the currencies in this)
    Then Reload the data into the cube,
    After, Reloading the data into the cube replicate the master data, and activate the mappings,and load the data.
    I think, this will work....
    Regards
    Sudheer

  • Unable to create shopping cart due to currency conversion error.

    Hi,
    We are currently working in a extended classic scenario. We have about 8 users connected under a common entity ( dept). Out of which for one user (user1) we are able to create the shopping cart and able to run the entire procurement cycle the entire cycle.
    When we are trying to create a SHC with any other user ( user2 to 8)  its giving the errors like
    1) Currency Conversion Error ( to GBP). Please inform help desk.
    2) Error in account assignment for item 0.
    Attributes for all the users ( user1 to user8) are same and we are not getting any error in the attribute check as well.
    Please suggest.

    Look up note 419423 + related notes to repair incorrect SRM users. What you report sounds a bit strange. A debugging session might be helpful too. Especially the 2nd error looks like something 'home-made'...

  • DTW Purchase Invoice upload-Currency Exchange error

    Hi everyone
    I've been trying to upload some Purchase Invoices for some time now but it keeps giving me back this error on every single one:
    "Exchange rate not updated ,'USD'Application-defined or object-defined error65171"
    I've changed all the dates in the excel file to the current date and have established exchange rates on SAP for that date but still it won't work...
    Please help me, I've run out of thing to try here
    Thanks

    I had a similar problem: importing down payment requests with DTW working, then some days later giving the Currency Exchange error.
    I found the reason which was having changed the business partner's currency. As soon as it was different than the default, DTW stopped to work as expected.
    Even better, I did found a solution. Set the currency and the rate also at the document level not only in the lines. It will make the import to work without the Currency Exchange error.
    Edited by: Péter Forró on Oct 9, 2008 2:56 AM

  • Currency Filed ERROR?

    There is amount field which is associated with a currency field.But the currency field has not maintained for that amount.So the amount field is appearing as
    13.0098ERROR.Can any one suggest me how to eliminate this ERROR from the amount field.
    Points will be definitely assigned .

    try this:
    RSA1-- >  Source Systems --> Right click --> Transfer Global Settings > Check Currencies->Execute.
    log off and log into bex-->execute the report.
    Currency Displays ERROR only for IDR (Indonesian Currency)
    Message was edited by:
            muralidhar c

  • Currency Exchange error

    Hi All,
    While running FI-SL Currency Translation in t-code gwul, I am getting the error message u201C No values entered, difference in local currencyu201D
    Is there any problem with the master data or config, as it is working fine for other company codes?
    Please Assist.
    Thanks in advance
    Edited by: Reema Sen on May 28, 2008 6:20 PM

    I had a similar problem: importing down payment requests with DTW working, then some days later giving the Currency Exchange error.
    I found the reason which was having changed the business partner's currency. As soon as it was different than the default, DTW stopped to work as expected.
    Even better, I did found a solution. Set the currency and the rate also at the document level not only in the lines. It will make the import to work without the Currency Exchange error.
    Edited by: Péter Forró on Oct 9, 2008 2:56 AM

  • [HELP] VBA Currency NumberFormat Error - Excel

    [HELP] VBA Currency NumberFormat Error - Excel
    Hello,
    I've a worksheet with many cells formated as currency and i want modify the currency format through a combobox,
    First i use this code to get the inicial currency type/format,
    Private Sub ComboBox1_DropButtonClick()
    inicial = Me.ComboBox1.Value
    Select Case inicial
    Case "EUR"
    oldFormat = "#.##0 €"
    Case "GBP"
    oldFormat = "[$£-809]#.##0"
    Case "USD"
    oldFormat = "#.##0 [$USD]"
    End Select
    End Sub
    The oldformat variable is a global variable,
    Public oldformat As String
    After that i want to do a find using oldformat variable and a replace using a newformat variable,
    Private Sub ComboBox1_Change()
    Dim ws As Worksheet
    Dim newFormat As String
    'On Error Resume Next
    newValue = Me.ComboBox1.Value
    Select Case newValue
    Case "EUR"
    newFormat = "#.##0 €"
    Case "GBP"
    newFormat = "[$£-809]#.##0"
    Case "USD"
    newFormat = "#.##0 [$USD]"
    End Select
    'Set rNextCell = Application.FindFormat
    For Each ws In ActiveWorkbook.Worksheets
    Application.FindFormat.Clear
    Application.FindFormat.NumberFormat = oldFormat
    Application.ReplaceFormat.Clear
    Application.ReplaceFormat.NumberFormat = newFormat
    ws.Cells.Replace What:="", Replacement:="", LookAt:=xlPart, SearchOrder _
    :=xlByRows, MatchCase:=False, SearchFormat:=True, ReplaceFormat:=True
    Next ws
    End Sub
    I read the new value through the user choice on the combobox.
    But this not work at all, the variables oldformat and newformat receive the correct values but i got a error on,
    Run-time error '1004': Application-defined or object-defined error
    Application.FindFormat.NumberFormat = oldformat
    Application.ReplaceFormat.NumberFormat = newFormatIs there any way to pass the newformat and oldformat value to the Numberformat property?
    Or someone have another away to do this?
    Link for exemple file,
    https://www.dropbox.com/s/sdyfbddxy08pvlc/Change_Currency.xlsm
    I apreciate any help, i m a little bit new on .
    I apologize if there are any errors in English, is not my natural language.

    The number formats must already be present in the workbook, otherwise you'll get the error that you mention.
    The code for US$ is [$$-409]
    Here is the code:
    Public oldFormat As String
    Private Sub ComboBox1_Change()
    Dim ws As Worksheet
    Dim newValue As String
    Dim newFormat As String
    newValue = Me.ComboBox1.Value
    Select Case newValue
    Case "EUR"
    newFormat = "#,##0 €"
    Case "GBP"
    newFormat = "[$£-809]#,##0"
    Case "USD"
    newFormat = "#,##0 [$$-409]"
    End Select
    Application.FindFormat.Clear
    Application.FindFormat.NumberFormat = oldFormat
    Application.ReplaceFormat.Clear
    Application.ReplaceFormat.NumberFormat = newFormat
    For Each ws In ActiveWorkbook.Worksheets
    ws.Cells.Replace What:="", Replacement:="", LookAt:=xlPart, _
    SearchOrder:=xlByRows, MatchCase:=False, _
    SearchFormat:=True, ReplaceFormat:=True
    Next ws
    End Sub
    Private Sub ComboBox1_DropButtonClick()
    Dim inicial As String
    inicial = Me.ComboBox1.Value
    Select Case inicial
    Case "EUR"
    oldFormat = "#,##0 €"
    Case "GBP"
    oldFormat = "[$£-809]#,##0"
    Case "USD"
    oldFormat = "#,##0 [$$-409]"
    End Select
    End Sub
    See https://www.dropbox.com/s/ax20vnmjpjny3h6/Change_Currency.xlsm
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Currency conversion error in SAP HANA

    Hi,
    I am new to SAP HANA and learning to create information views in HANA studio (SAP HANA SP6 on Cloudshare, HANA studio 1.0.68). I am trying to create a simple analytic view (on purchaseOrderItem table in SAP_HANA_EPM_DEMO sample database) to have GrossAmount converted to EUR.
    I added a calculated column as follows:
    When i click on "OK", i get error -
    The check box “Calculate before aggregation” has been unchecked, because the definition of the calculated column contains measures with currency conversion, restricted measures or operands with input parameters. For such a calculated column the calculation is always done after the aggregation."
    and checkbox "calculate before aggregation" get unchecked. See screenshot below:
    Please suggest what could be reason? Thanks in advance.
    Regards,
    Amit

    Hi Amit,
    If you uncheck the "Calculate before aggregation" checkbox and activate the view, you will see in the generated log that a Calc scenario is created. (a view with /olap wrapper). Due to the calc scenario, the aggregation is defined as the default behavior for the KFs and hence the calculation cannot be done before aggregation.
    By the way, I did not understand why do you need calculate before aggregation for a KF which is just a copy of another KF. If you need Gross amount in Local currency and EUR, then just perform the currency conversion without "Calculate before aggregation" checkbox. It will work.
    Regards,
    Ravi

  • Currency Conversion Error in Report

    Hello Forum,
    I got an error while executing a report, where
    the demo Key Figure NET VAL IN STST CUR(0D_NETVAL_S) IS restricted to the Characteristic value Current Version of the demo object Version(0D_VERSION).
    The field is showing no values and the error message is
    'NO VALID SOURCE CURRENCY IS SPECIFIED FOR CURRENCY TRANSLATION
    0HRFIXCUR'
    Could you please help me with step by step solution to resolve this issue?
    Thank you,
    raj

    hELLO Parvahi,
    Did you check OB08 in backend if maintained properly? also check validity...
    also on the SRM side is below report run using SA38?
    Update exchange rate tables in component system :BBP_GET_EXRATE       
    Hope that helps                    
    Arshad
    Edited by: arshad ahmed on Feb 9, 2010 12:06 PM

  • Currency Type error when releasing billing docs to Accounting

    When I am trying to release the billing documents to accounting following error is displayed :
    company code ABC has currency type 31. the currency type has the currency key INR in the Fin. Accounting application. The same currency type is conveyed to fin. accounting accross the accounting interface with currency key CAD.
    System is also showing the tip :
    This is a system error in the calling application. Currency type 31 in company code ABC must have currency key 'CAD' when the data is transmitted.
    Please let me know if I have to do anything in Tcodes SCC4 or OB22. Detailed answer will be of help.
    Regards
    RK

    Hi Ravi,
    From the discription of the error what you have given what i umderstood is that in FI documents are posted with Currency INR, while the Cur. type 31 is transferring Cur. Key CAD to FI.
    Since there is a diff in the Cur the error is coming.
    Try to maintain Add. local cur in OB22 and then check.
    regards
    JS

  • Currency conversion error in Update rules for 0SD_C03

    Hi All
    I have freshly installed Sales Overview cube 0SD_C03 from BI Content(3.x version) and when extracting data from datasource "2LIS_13_VDITM" there is an error "Error: Conversion foreign curr. -> local curr.: 0090000000 20080516 M -> SGD".
    Till PSA data is loading fine, there is error while loading from PSA to cube(ie. in Update Rule).
    Checked in the PSA for the errored records, all the records which have 0(zero) as amount are green and the rest of them are errored with the above message.
    When checked in the manage cube there are added records but the request is red.
    Please let me know if some one as the clue.
    Regards
    Jayant

    Hi
    You will find the transfer global settings for the source system where you are extracting the data.
    Select the source sytem, right click,go to transfer gloabal settings, (select the currencies in this)
    Then Reload the data into the cube,
    After, Reloading the data into the cube replicate the master data, and activate the mappings,and load the data.
    I think, this will work....
    Regards
    Sudheer

  • Currency conversion error in SRM

    Hi,
    When we are trying post the confirmation in SRM it is giving the error message that "Error in currency conversion between EUR and USD".
    We have checked the exchange rate settings in SRM and Backend (R/3) there is no issue at all. Everything is maintained properly but still the sytem is giving error.
    PO currency and vendor currency is USD and company code currency is EUR.
    Is there any other settings missing which is causing the error.
    Thanks in Advance
    S.Parvahi

    hELLO Parvahi,
    Did you check OB08 in backend if maintained properly? also check validity...
    also on the SRM side is below report run using SA38?
    Update exchange rate tables in component system :BBP_GET_EXRATE       
    Hope that helps                    
    Arshad
    Edited by: arshad ahmed on Feb 9, 2010 12:06 PM

  • Bex to Business Objects - Currency Conversion error in Webi

    Hello,
    I am attempting to transfer a Bex 7 key figure currency conversion to a Business Objects filter in a Universe for display in a Webi report.  The version of Business Objects XI 3.1 SP2.  The Bex Conversion Type is based off Calendar Month, and the Target Currency variable is a selection prompt. The filter is passed to the universe and prompts when the report is ran in Webi, but an error occurs if the currency is populated.  For instance, if I populate the filter in Webi with 'USD', the following error occurs:  The MDS query SELECT "....." failed to execute with the error Value 'USD' FOR variable "Currency" is invalid (WIS 10901).
    I'm not sure if the currency conversion information is being properly transferred and translated to Business Objects.  Does anyone have any insight on this issue?
    Thank you,
    Brock

    I was able to modify the dimension for the filter to retrieve the correct object (Ex. USD), but there are multiple incorrect selections for USD and other currency types.  For instance, when I type in USD i get 5 different options, and the one with the description 'American Dollar' is the correct one.  Why is Webi displaying all these different options?  When I display the options for currency in Bex only one 'USD' is shown in the list.   Here is my filter condition for currency type in the Universe:
    <OPTIONAL><FILTER KEY="[SELCUR]"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Select Currency','A','Organization\Cur Key',mono,primary_key)"/></CONDITION></FILTER></OPTIONAL>
    Cur Key is my customized hidden dimension
    Thank you

  • Foreing Currency Valuation - Error in posting

    Hi  Gurus,
    I have executed the Foreign currency valuation but while processing of Batch Input session, system created posting for 22 documents and asking for expense and revaluation GL in 3 documents.
    I have assigned the GL Accounts in OBA1 under KDF transaction.
    Please help me in solving the issue.
    THank YOu

    Hi,
    To the accont determination kindly ask you please the note: 548946                                                                               
    In transaction OBA1 you have specified an entry for G/L account in     
    activity type KDF (table T030H) as well as for exchange rate difference
    key in KDB (table T030S). While processing the G/L balance valuation for
    this account according to the standard logic the program retrieves the 
    target accounts by checking the settings for                           
    1. KDF first and secondly                                              
    In case no relevant KDF entry is found - by checking the entries of   
    2. KDB.                                                                
    For further information in this context please review the information in
    the FAQ note 548946.                                                  
    The possible error, that this account could not be posted:
    1. the account is not exist in the company code where the valution diff. should be posted
    2. the account is locked
    3. account setting in the related company code is nto correct
    4. KDF settings are missing to the valuated rec. account.
    I hope this helps you
    BR
    Renata

Maybe you are looking for

  • Mysterious function module DYNP_VALUES_UPDATE?

    Hi ABAP Gurus/Experts, I'm very confused about function module DYNP_VALUES_UPDATE in function group SHL2. It'll be nice if you could answer my question below. I tried to call the function module with space passed to both parameter DYNAME and DYNUMB,

  • Creative cloud desktop app show APPD download error

    Creative Cloud desktop app show APPS 'download error' - gives the option to reload applications or contact customer service Reload doesn't work I tried uninstalling and reinstalling the app - same error Trouble began after I attempted to download a B

  • Clicking on a viral email link has caused Safari to play up

    I received a link from my aunt through email this morning.  Not realising that it must have been viral I clicked on the link.  It opened up in safari and since then I could not quit out of safari, and the option is greyed out.  I choose instead to re

  • SAP Best Practice for Discrete Manufacturing

    Hi colleagues, We are installing SAP BP for Discrete Manufacturing based on ECC 6.00. We have already installed the Baseline Layer 0. The problem we face now is that some of the building blocks required for Layer1 activation are not present amongst t

  • N8 widget vs.. Application

    Hi All, Just got the phone and love it.  I get the application vs. widget thing, but still have a few questions. Can you add an application to a home screen WITHOUT the shortcut widget?  I love the TopApps widget which came loaded with the phone.  Ho