Automated Exchange Rate Loading in BPC NW

Hello Everyone,
Is anyone doing an automated load of exchange rates from BW to BPC?
If we plan to load transactional data from SAP R/3 via BW to BPC, we would like to do the same for the exchange rates...
I know we can load automatically from an infocube to BPC but how about the TCURR table?
Are you uploading TCURR into an infocube first and then loading or do you have bright alternatives? I would be interested to know.
best regards,
Luis

Hi All
I hope this will help you to pull Exchange rate data from ECC Table : TCURR  to SAP BI System.
ECC Steps : Creation of generic datasource
1) Create generic Transaction Data source Using TCode : RSO2 with name ZTCURR and then press create Button.
2) Input Applic. Component:  FI-GL and give description.
3) Input View/Table: TCURR and Press save Button.
4) This will take you to extract structure of data source ZTCURR. In this structure select respective field from the selection field option (In future we will use it in BI info package) and then press save button.
5) Use Tcode:  RSA3 to check the data by giving custom data source ZTCURR name.
Note:In this case we are extracting full data from TCURR table. If your project demands you can use delta specific field.
SAP BI 7 Steps
1) Go to BI system, TCode: RSA1--> Source System-> Replicate metadata, then you can see generic data source "ZTCURR" in your BI data source tree.
2) Maintain Info cube Structure same like table : TCURR, 
ECC Field       ECC DATA TYPE                          BI Field          BI Data Type                    
KURST      CHAR                             ZKURST          CHAR (Length 4)
FCURR      CUKY                      ZFCURR          CHAR (Length 5)
TCURR      CUKY                      ZTCURR          CHAR (Length 5)
GDATU      CHAR                      ZGDAT            CHAR (Length 8)
UKURS      DEC                            ZUKURS                          NUMBER ( Key Figure )
FFACT      DEC                            ZFFACT          NUMBER ( Key Figure )
TFACT      DEC                          ZTFACT          NUMBER ( Key Figure )
3) Conversion of default format "YYYY/MM/DD" to "YYYYMMDD".
In Transformation: "GDATU" is number format, not date format, so we need to write start routine in transformation.
With the Help of below code you can convert default format
"YYYY/MM/DD" to "YYYYMMDD".
DATA: DATE      TYPE CHAR10,
          L_INDEX   TYPE SY-INDEX.
  LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.
    L_INDEX = SY-TABIX.
    CALL FUNCTION 'CONVERSION_EXIT_INVDT_OUTPUT'
      EXPORTING
        INPUT  = <SOURCE_FIELDS>-GDATU
      IMPORTING
        OUTPUT = DATE.
    CONCATENATE DATE+6(4)
                DATE+3(2)
                DATE+0(2)
    INTO <SOURCE_FIELDS>-GDATU.
    MODIFY SOURCE_PACKAGE FROM <SOURCE_FIELDS> INDEX L_INDEX TRANSPORTING GDATU.
ENDLOOP.                    
Note : Customize above ABAP code according to your client requirement.
4) Calculation of Month End Rate----> Means last working day of month
Go to BI transformation and write formula in ZGDAT field. In this case add GDATU as source field of rule and write below formula.
*Last working day of month Formula *    :             LAST_WORKINGDAY_MONTH( GDATU, '' )
Last working day is calculated  based on the data maintained in the ECC TCODE : SCAL ( SAP Calendar )
5)  CALMONTH calculation:  conversion of YYYYDDMM format   to YYYYMM format.
This below given ABAP code helps you to convert GADTU: YYYYDDMM format   to CALMONTH : YYYYMM format.
In BI transformation write field routine in CALMONTH field  to display  date in this YYYYMM format.
DATA : L_GDATU TYPE tys_SC_1-GDATU.
CLEAR L_GDATU.
CONCATENATE SOURCE_FIELDS-GDATU0(4) SOURCE_FIELDS-GDATU4(2)
            INTO L_GDATU.
RESULT = L_GDATU.                      
Regards
Amit

Similar Messages

  • Pulling of Exchange Rate data from ECC to BI

    Hi All,
    we are having an requirement to pull TCURR Table Exchange Rate data from ECC to BI.
    If anybody worked on this scenario could you please share valuable inputs regarding this.
    I gone through this  SDN forum link: Re: Automated Exchange Rate Loading in BPC NW ( please share some more details regarding this )
    Regards
    Amit

    Hi All,
    I hope this will help you to pull Exchange rate data from ECC Table : TCURR  to SAP BI System.
    ECC Steps : Creation of generic datasource
    1) Create generic Transaction Data source Using TCode : RSO2 with name ZTCURR and then press create Button.
    2) Input Applic. Component:  FI-GL and give description.
    3) Input View/Table: TCURR and Press save Button.
    4) This will take you to extract structure of data source ZTCURR. In this structure select respective field from the selection field option (In future we will use it in BI info package) and then press save button.
    5) Use Tcode:  RSA3 to check the data by giving custom data source ZTCURR name.
    Note:In this case we are extracting full data from TCURR table. If your project demands you can use delta specific field.
    SAP BI 7 Steps
    1) Go to BI system, TCode: RSA1--> Source System-> Replicate metadata, then you can see generic data source "ZTCURR" in your BI data source tree.
    2) Maintain Info cube Structure same like table : TCURR, 
    ECC Field      ECC DATA TYPE                               BI Field     BI Data Type
    KURST     CHAR                          -
      >                 ZKURST     CHAR (Length 4)
    FCURR     CUKY                          -
      >          ZFCURR     CHAR (Length 5)
    TCURR     CUKY                          -
      >          ZTCURR     CHAR (Length 5)
    GDATU     CHAR                          -
      >          ZGDAT       CHAR (Length 8)
    UKURS     DEC                             -
      >          ZUKURS     NUMBER ( Key Figure )
    FFACT     DEC                             -
      >          ZFFACT     NUMBER ( Key Figure )
    TFACT     DEC                             -
      >          ZTFACT     NUMBER ( Key Figure )
    =========================================================================================
    3) Conversion of default format "YYYY/MM/DD" to "YYYYMMDD".
    In Transformation: "GDATU" is number format, not date format, so we need to write start routine in transformation.
    With the Help of below code you can convert default format
    "YYYY/MM/DD" to "YYYYMMDD".
    DATA: DATE      TYPE CHAR10,
              L_INDEX   TYPE SY-INDEX.
      LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.
        L_INDEX = SY-TABIX.
        CALL FUNCTION 'CONVERSION_EXIT_INVDT_OUTPUT'
          EXPORTING
            INPUT  = <SOURCE_FIELDS>-GDATU
          IMPORTING
            OUTPUT = DATE.
        CONCATENATE DATE+6(4)
                    DATE+3(2)
                    DATE+0(2)
        INTO <SOURCE_FIELDS>-GDATU.
        MODIFY SOURCE_PACKAGE FROM <SOURCE_FIELDS> INDEX L_INDEX TRANSPORTING GDATU.
    ENDLOOP.                    
    Note : Customize above ABAP code according to your client requirement.
    ==============================================================================================                    
    4) Calculation of Month End Rate----> Means last working day of month
    Please refer below solution  ( sent on 3rd June 2011 )  to calculate Month Rate
    Go to BI transformation and write formula in ZGDAT field. In this case add GDATU as source field of rule and write below formula.
    *Last working day of month Formula *    :             LAST_WORKINGDAY_MONTH( GDATU, '' )
    Last working day is calculated  based on the data maintained in the ECC TCODE : SCAL ( SAP Calendar )
    ==============================================================================================
    5)  CALMONTH calculation:  conversion of YYYYDDMM format   to YYYYMM format.
    This below given ABAP code helps you to convert GADTU: YYYYDDMM format   to CALMONTH : YYYYMM format.
    In BI transformation write field routine in CALMONTH field  to display  date in this YYYYMM format.
    DATA : L_GDATU TYPE tys_SC_1-GDATU.
    CLEAR L_GDATU.
    CONCATENATE SOURCE_FIELDS-GDATU0(4) SOURCE_FIELDS-GDATU4(2)
                INTO L_GDATU.
    RESULT = L_GDATU.                      
    Regards
    Amit
    Edited by: amit_sap_n on Jul 20, 2011 1:54 PM

  • How to get actuals at budget exchange rate

    Hi All,
    I am working on a multi currency planning application.
    I want to do variance reproting wherein I have to calculate variance between actual * actual exchage rate and actual * budget exchange rate.
    What can be the best way to do this?

    To get actuals at budget exchange rate the normal practice is to have another scenario called something like actual_bud_rate where you have the budget exchange rates loaded.
    The variance can then be accomplished in many ways whether that be via SmartView, Financial Reports, or creating another scenario and using one of the variance functions @VAR, @VARPER.
    The key to any of the methods for variance is that new scenario and loading the budget rates to that scenario.
    Regards,
    John A. Booth
    http://www.metavero.com

  • Power Pivot - Calculating Exchange Rates depending on MONTH

    Hello everyone, I have a question, would like to know if someone can help me figuring out a solution. I have created a spreadsheet using powerquery and powerpivot. Loading the data on powerquery from different spreadsheets was a charm, the problem is calculating
    the exchange rates per month. Let me try to explain better;
    The structure is as following:
    I have 3 tables, they are:
    Dates– Just a dates (loaded directly on PowerPivot).
    Invoice – Details of invoices for all customers, gross totals are in different rates (loaded through power query)
    Customer – Detailed information of customers (loaded directly on PowerPivot).
    Currency – exchange rates (loaded directly on PowerPivot).
    Note: I mentioned where they were loaded because I do not know if that really matters, I guess it does not... but extra information will not hurt. Now, let's go to how these tables are connected between each other and their key columns:
    The Invoice table has information on invoices dates, invoice gross total and customer code. This table is related to Customer table, which has the actual name of customers and other details. This link is done through the Customer Code column. The Currency
    table have a relationship with the Customer Table through the Country Column.
    What I want to achieve is a formula to do the exchange rate based on the Invoice Date column present on the Invoice Table. So I have created a column on the Currency Table named at each month of the year and populated it with the exchange rates for all countries
    (countries listed using ISO3 format).
    My problem is while I am able to select a column from the Currency table to do the exchange rate calculation using the below formula, I fail to realize how to do it per month:
    =CALCULATE(sum(invoice[Gross Value])*SUM(Currency[Reverse]))
    *Reverse is the column with the exchange rate for the country money to USD
    What I am failing to do is how to make that calculation to also consider the month of the invoice and pull the exchange rate for the same month from the Currency table… something like:
    Get the invoice date then find the column on Currency[Month] and multiply, providing me the USD amount.
    I was unable to figure out a solution using the filters parameters from Calculate. If some of you ask why I am using SUM inside Calculate, is because if I only use SUM and try to do the math between the two tables I get an error saying that it was not possible
    to determine the value on Currency[Reverse]. Same happens with SUMX. It worked out with Calculate, but then I cannot create other formulas using CALCULATE on that table because it will give that error on redundancy, unless I add a filter on it, which worked
    last time (but I do not remember which thing /parameter used to filter, so do not ask it right now :D)
    To be honest… I do not really need that level of accuracy, but my Virgo perfectionist side demands me to find a solution to that, that will not use a single exchange rate, but consider which is the correct exchange rate for the month of the invoice and calculate
    it correctly for all invoices. Just so you know, the Invoices tables has more than 1million lines.
    Anyone know how to crack this problem or can point me to some site where I can learn how to do it?
    Thanks for the time reading all of this, even if you cannot help, I really appreciate it ;)

    Hi Estevao,
    Having problems to understand how you managed to combine your currency table with the customer table by Country ID. Where’s the 1-side of this relation (many customers in the same country and many months for the same currency)?
    Anyway: Seeing that you already use Power Query, I’d suggest that you prepare your data in a way that you can connect your currency table with your invoice table instead of with your customer table. Create a field in your Invoice Table
    that concatenates Customers CountryID&Month.
    Imke

  • How to upload exchange rate to planning in EPMA?

    Dear expert,
    Our instance of Hyperion Planning is built upon EPMA. We know that in classic mode, we can upload exchange rate with outline load utility. We would like to know in EPMA, how can we upload the rate with excel, to the exchange rate table defined in planning?
    Please kindly advise.
    We're using version 11.1.1.3
    Thanks & best regards,
    Annie

    Hello everybody,
    I tried to use the OutlineLoad to load exchange rates on a EPMA Planning applications.
    I get the following error:
    java.lang.RuntimeException: Planning Adapter loads may cause issues on BMPA enabled applications if metadata is modified.
    at com.hyperion.planning.HyperionPlanningBean.beginLoad(Unknown Source)
    at com.hyperion.planning.utils.HspOutlineLoad.parseAndLoadInputFile(Unknown Source)
    at com.hyperion.planning.utils.HspOutlineLoad.halAdapterInfoAndLoad(Unknown Source)
    at com.hyperion.planning.utils.HspOutlineLoad.loadAndPrintStatus(Unknown Source)
    at com.hyperion.planning.utils.HspOutlineLoad.main(Unknown Source)
    It seems the exchange rates load is recognized as a metadata load, and this cause Planning to stop the process.
    Anyone found a workaround to load the exchange rates to a EPMA Planning app?
    Thank you,
    Nicola

  • Rates load(handling From & To fields to BPC-INPUTCURRENCY)

    Hi Friends,
    I'm loading exchange rates information from BW cube(ZECURR) to Rate applicaton(BPC NW7.5 ).
    BW cube have below fields.
    From Currency(ZFCURR)
    To Currency(ZTCURR)
    Exchange Rate Type (ZKURST)
    Exchange Rate (ZUKURS)
    Rate application:
    R_ACCT(AVG/END)
    INPUTCURRENCY(USD,EUR,CNY.)
    ENTITY(GLOBAL)
    TIME
    CATEGORY
    Reporting currency is USD.
    Eg: for paricular month 201012,  INR to USD  is 49
    In transformation file,
    SELETION=ZTCURR,USD;
    maintained currency dim like below along with other mappings
    INPUTCURRENCY=ZFCURR
    loaded data into Rate applicatons. Value is correctly populating for currency conversion.
    Here i have one more requirement, like conversion from Report currency to Local currency.Eg USD to INR.
    So i removed restriction in selection on ZTCURR as USD. Now loaded BW to BPC all rates.
    If i see record in BPC like this
    INR| 201012|GLOBAL|ACTUAL|76.80
    It means aggregating with some other combination INR with other currency. How can handle INR & USD scenario here.
    Thanks,
    nareh

    Hi,
    transformation file:
    selection=ZFCURR,USD;
    Mapping part:
    INPUTCURRENCY=ZTCURR
    still for particular combination, records  value is aggegating as i said above.
    NOw what i thought is we load only all data with ZTCURR (USD) and in template i inverse values (1/rate) for local calculations.
    If you have any suggestion, pls share.
    thanks.

  • BPC 7.5 NW - Exchange Rates & Currency Translation

    Hello All,
    I have a couple of questions regarding the BPC currency translation process.
    1.  We have two options to store the exchange rates - either as a direct quote or as an indirect quote.  How are the exchange rates stored in the BPC system?
    2.  We have a property called "MD" in the InputCurrency dimension, which is used as a 'factor' in the currency translation process.  I would like to know how this property is used, in conjunction with the direct/indirect method of maintaining the exchange rates.
    As always, thanks for all your responses.
    Best regards,
    Van.

    Thanks for the response.  I do realize that we can enter the exchange rates either via a flat file or an Input Schedule, and also how the "MD" factor is utilized in the currency translation process.
    I will try to rephrase my questions, as below: 
    1.  In ECC, we have the option to maintain the exchange rates either as a direct rate or an indirect rate.  Similary, I would like to know how the exchange rates are "_stored_" in the BPC system - as indirect quotations or direct quotations. 
    2.  In addition, I would also like to know how the "MD" property in the InputCurrency dimension should be maintained.  In other words, let us say that the exchange rates are stored as direct quotes.  How do we maintain the "MD" property in the inputcurrency dimension for this exchange rate - M or D?
    Hope my questions are a bit more clear now.
    Appreciate all your responses.

  • How to manipulate exchange rates during loading from R/3

    Hello,
    We understand that R/3 is able to do more complex currency calculations than BW. For example is it ok for R/3 to calculate from USD to NOK if only the NOK to USD rate exist in the system. It's even possible to calculate via another currency. This is not easily possible in BW. To be able to do the same in a BW-report we would like to have the NOK to USD rate in the currency tables in BW. The rates are loaded from R/3 and of course we don't want to add exchange rates manually in BW.
    I suppose it's possible to write a program which loops through the currency table and generates the missing rates. Are there any simpler solutions?
    Anyone who has had the same problem?
    Best regards,
    Christoffer Owe

    Hi,
    In transaction RSCUR you can use a number of conversion rules. 
    If you want to have something more complex, just use an ABAP-routine to do the conversion.
    The exchange-rate tables in BW and R/3 are exactly the same, so you can use the same function
    modules as the ones used in R/3.
    regards,
    M.

  • How to load  exchange rates in BW 3.5  for month end

    Hi ,
    The exchange rates are not loaded automatically in BW for FEB month end.
    Request your reply ...how to load exchage rates into BW and what should be the reasons like why this is not loaded automatically.

    Hi,
    Create a Varient for that Program "RSIMPCURR" and then run in background on daily basis, ask Basis team to create BackGruond job for that program using the varient. Else you keep that program in Process chains.
    Check in SDN you can find no. of threads.
    Transfer of Global Settings and Exch Rate from R/3 to BI thru Procee chain
    Re: Exchange rates help
    Re: Transfer exchange rate in process chai
    Re: Transfer exchange rate in process chai
    Thanks
    Reddy
    Edited by: Surendra Reddy on Mar 2, 2009 11:27 AM

  • How to periodicaly load exchange rates

    Dear experts!
    I need to periodicaly load exchange rates from SAP ERP to BW system.
    On this forum I found that it can be done by means of  program
    but when I run it I the input fields for Source system entering is blocked and I cannot enter it. Thus I cannot run this programm. Is there any alternative to this program or how can I manage to enter the source system field in this program?

    Hi,
    Goto RSA1->Source system->Context menu->Transfer
    exchange rates->Give the exchange rate -> Give the time->
    Execute it in background.
    Prasad

  • Exchange Rate Calculation - Can I change it?

    BPCu2019s conversion process is different from the way weu2019re currently operating.  Currently, weu2019re pulling data from Oanda.COM for every Currency-to-Currency permutation and using Oandau2019s rounded to 5 decimal place rate to calculate the exchange rates in our Financial System. 
    However, BPC seems to convert differently.  In BPC, we've loaded all Rates to the tblFactRate table as they relate to USD.  So, if calculations need to be done between non-USD currencies, the rates are calculated on the fly based on the ratesu2019 relation to the USD rate. 
    Example:
    For February 2010 we have the following Average rates:
    Oanda.com  (These are the rounded to 5 Decimal rates for the 28 days of February, averaged, then rounded to 5 Decimal Places again)
    GBP u2013 USD:         1.56285
    EUR u2013 USD:         1.36842
    GBP u2013 EUR:         1.14235
    In BPC we only have the following rates in the tblFactRate table, so the system cannot use the GBP u2013 EUR rate from Oanda.com.  We only load the following:
    GBP u2013 USD:         1.56285
    EUR u2013 USD:         1.36842
    If a conversion is needed for GBP u2013 EUR, it will calculate the rate on the fly as so:
    1.56285 / 1.36842 = 1.142083571
    So, because Oanda is using a Rounded Average, based on Rounded rates, the way things are now, the BPC Calculated Rate will not match the rates in our Financial System.   
    Is this a configuration issue or is this simply the way the software does FX Translation?  Is it possible to load GBP - EUR rates somehow and have BPC calculate those rates based on what we input rather than the calculation being used? 
    Thanks!
    Sean

    Hi,
    I dont think this can be changed. BPC stores the conversion rates with respect to the group currency (or the currency of the parent entity). So, the currency translation is also done based on the group currency, as you have indicated. With 5 places of decimal, the figures will definitely not match.
    Hope this helps.

  • Exchange rate upload throuhg Transaction ob08

    Hi,
    I need to load automatically the exchange rates which are downloaded from company site which are in pounds  every month to transaction ob08
    I'm trying to use TBDM to upload exchange rates, and I'm having problems.
    I created an excel file according the help information. But when I try to run TBDM, my list and error log file are empty. No error messages, but no results.
    I tried saving the file as comma delimited and as tab delimited text file, but neither worked. When I first tried to run TBDM, it wanted me to enter a data provider, so I had to set one up in the Treasury config. Is there other config I need to do? You said something in your message about using Access to make a fixed length file. Apparently I'm missing something.
    I am also trying to load through Transaction TBEX but that does work either.
    I just want to know from Financials gurus if I am proceeding correctly or not.
    I'd really appreciate any hints!
    MaRk

    Hi,
    This question is very old but when you look for this in Google this is the first page that comes up.
    To make your own uploadable table in Excel you need to follow this structure:
    Required means that you must fill that field and Empty means that should leave it blank.
    The length describes the length of the field. It's very important the length of the field because if you don't use that length then it won't work the upload.
    1 Data Class (Fixed value '01') - Length 2 - Required
    2 Key 1 FROM currency - Length 20 - Required
    3 Key 2 TO currency - Length 20 - Required
    4 Category Interest type - Length 15 - Required
    5 Date Calculation Date (Format DDMMYYYY) - Length 8 - Required
    6 Time Calculation Time (Format HHMMSS) - Length 6 - Empty
    7 Value Value of Data - Length 20 - Required (Use dot for decimals not commas)
    8 Currency Not applicable - Length 20 - Empty
    9 FROM Ratio Translation Ratio from - Length 7 - Required
    10 TO Ratio Translation Ratio to - Length 7 - Required
    11 Other Not applicable - Length 5 - Empty
    12 Status Error status (values 50..99)  - Length 2 - Empty
    13 Error message Error message - Length 80 - Empty
    In excel you can define the column width with right click in the column. Doing that define every column with the previous length exposed. Fill the required fields.
    You should use define every field in "Text" format because numbers like the first one: 01, must be 01 and it won't work with just 1. The same with date, if you have a date like 5012015 it won't work and has to be 8 digits like 05012015 (05.01.2015)
    After you define every column width and define the required fields. Remember to delete the headers if you used them.
    Finally save the file as .prn (Formated Text Space Delimited) and upload TBDM.
    That's it

  • Exchange rate error

    Hi
    We are getting the below error message while loading the data from ODS to Cube.
    Enter rate USD /  rate type M for 00.00.0000
    Enter rate CAD /  rate type M for 00.00.0000
    We are using a program to convert the doc currency to Local currency and this we got this message for only few data packs not for all from ODS & when we tried to debug its giving no PSA data found. I think to debug the data which is coming from ODS is not possible.
    I tried entering the exchanger rate for USD for date 00.00.0000 and its not allowing me to enter that date. (nvalid date)
    Pelase advice

    Hi,
    just go through this link for the same issue.
    exchange rate
    currency conversion
    It seems you are doing currency conversion at the update rule level.
    Are you maintaining these rates in any ODS and then custom defined program Or you are using standard SAP function.
    you can lao chek it in R/3.
    you can go to source system ->right click-> trasfer exchage rates. and then try to laod data nad see if solved the problems.
    If not then you will have to maintain the rates manually.
    Hope this helps u..
    Best Regards,
    VVenkat..

  • EXchange rate problem

    Hi BW experts,
    I getting following error in report :
    <b>No exchange rate from CAD to USD and date 28.02.2007 found (currency transl. TRAV/TRAV)
    Notification Number BRAIN 380</b>
    I am getting this message for only 4 months i.e March April,May,June but rest of months its fine.
    Currency translation is done in query with a variable.
    I tried the following solutions:
    1.transfer Exchange rates from source systems Via Program :RSIMPCURR
    2.I checked in Table TCURR and there exists a exchange rates between CAD to USD.
    3.I checked TCODE: RSCUR the variable exists and created properly.
    4.I searched through forums but none of them present a clear solution.
    SO can somebody help me to solve this error ,its very urgent
    null
    Message was edited by:
            NRUPAL CHOWDARY

    So check in OB08 which gives the overview of Currency Exchange Rates for each month.Check what is the exchange rate maintained for the months u r looking into.
    Else ask the users what exchange rates they maintained for those months and upload the exchange rates for those months.
    Here is the link which will explain how to load the exhange rates.
    <u>http://help.sap.com/saphelp_nw04s/helpdata/en/36/412ad80cb511d5b2df0050da4c74dc/content.htm</u>
    Thanks & Regards,
    Suchitra.V

  • Ambiguous INR/EUR exchange rate relations

    HI Experts,
    I am stuck with this problem from past one week please help.
    I have loaded data from SRM system to BI system and there is no problem with data in PSA but when tried to load data from PSA to ODS using DTP i get
    "Ambiguous INR/EUR exchange rate relations" Message and click of OK it dumps with message_x
    i further debuged and that this is happening in RSW_CURRENCY_TRANSLATION FM where it is trying to convert Document currency to local currency.
    I also check in OB08 where exchange rate is also maintain properly
    below is the parameter i am sending to FM
    Test for function group RSW0
    Function module RSW_CURRENCY_TRANSLATION
    Uppercase/Lowercase
    Import parameters Value
    I_CTTNM 0SR_DEFCUR
    I_AMOUNT 0,0000000000000000E+00
    I_SCUR INR
    I_TCUR EUR
    I_TIME_IOBJVL 20070323
    I_SCUR_IOBJVL
    I_TCUR_IOBJVL
    I_PERIV
    I_RATE 0,0000000000000000E+00
    I_VDATE
    and below are the entried maintained in OB08
    M 01.10.2005 X 1 EUR = 56,00000 X 1 INR
    0022 01.03.2000 X 1 INR = 1,00000 X 1 EUR
    M 01.10.2005 X 1 INR = 0,01700 X 1 EUR
    M 01.03.2000 X 1 INR = 1,00000 X 1 EUR
    Please help.......
    Best Regards
    Falgun

    Hi Anil,
    I am getting the same problem. How did you solve the problem in your system?
    Thanks and regards,
    Renato Morais

Maybe you are looking for

  • Apps open and close alone...

    Hi, I have the Ipad 3 with IOS 6 and yesterday, suddenly, the apps and everything started working without touching the screen. Everything opens and closes immediately without stopping. I barely could turn it off. I finally reset it but still the same

  • How can I use itunes store credit with Apple TV without the credit card code?

    I would like to allow guests in my home to use the credit in my iTunes account to purchase movies and TV shows on the Apple TV in my guest room. Unfortunately, it seems that in order to make a purchase they will need my credit card security code.  If

  • Dreamweaver on a Netbook

    I own Creative Suite 3, Web Premium. I believe I'm allowed to install it on two computers - a desktop and a laptop. But how does one define "desktop" and "laptop." In fact, I'm using my MacBook Pro as a desktop, and I'm about to purchase a netbook, w

  • Xcelius 4.0 Professional Activation problem

    I installed Xcelius 4.0 Professional 1 year ago, no problem occured. But today it jumps out a window asking me to activate it. I try to do according it's wizard but I was told "Activation key is not valid". It's strange because I successfuflly activa

  • Systemd? why?

    i installed systemd with initscripts for arch. i improve my boot just a little and something like rc.local.service don't work. my question is: why systemd for a fast distribution like archlinux?