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

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 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

  • Currency Unit, error while filtering in a report.

    Hello ,
         We have a report with the Currency Unit (1CURDIM) in the rows. After the query execution when we right click and try to "Select a filter value" for the Currency Unit we are getting a error message saying "System error in program CL_RSR and for GET_CHAVL_NC_FROM_SID-01-(see long text)", there is no long text though.
        Please help....
    Thanks.

    Check the below link :
    https://websmp204.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=954852&_NLANG=E

Maybe you are looking for

  • Want to move itunes libary files

    Is there no way to move the itunes library files, "iTunes Library.itl" and "iTunes Music Library.xml"? They are in a very stupid location on my computer, (a folder that should be used exclusively for work). I would really like to get the iTunes libra

  • Reports 3.0 Problem

    Recently I have converted all my reports in Reports2.5 to Reports3.0. After conversion I find most of the reports are not getting printed on the printer when I mention any custom page size. Now I can not go back to 2.5. Pls help. Thanks. Asish

  • Delete web gallery?

    Wouldn't you think that someone smart enough to use Aperture would actually know how it works? I cannot figure out how to delete a Web Gallery! It was created in Aperture 2.0.2 and I did it by using 'New From Selection' item. Does anyone know how to

  • SWL_SUBSTITUTION_DEFINE does not work in production

    hi guys, we have tested to set substitution in qas using FM SWL_SUBSTITUTION_DEFINE and it work. Somehow it does not work in production ? we have checked and set the same setting as if in qas but still user is not able to see the PR in her inbox. pls

  • Sending email with Entourage worked, but Apple Mail fails

    I want to migrate from Entourage to Apple Mail. However sending emails using the smtp of my hosted website, fails every time. I use the same SMTP settings as configured in Entourage, but the connection manager cannot connect to these smtp servers. Wh