Bex rscur 2 changes rate

Hello,
I have a conversion problem in a query.
On the selection screen i have the currency.
If i put EUR in currency the exchange rate is 'EURM' the conversion ik ok.
If i put PLN in currency the exchange rate is 'M' the conversion ik not ok.
In rscur, in the conversion type the exchange rate type from var. is "RTYPE001". I don't undertsand why the system don't find the conversion from GBP to PLN.
I don't finf documentation on transation rscur.
thanks for your help.
bets regards
Raphaël VINSON

Hello
This is the PI (Process Integration) forum. Is this query related to PI? It seems to be BW related, so will forward this thread to the BW forum.
Regards
XI/PI Moderator

Similar Messages

  • Archived case in ISU not allowing to change rate type

    Hi,
    There is one case where rate type is changed after 'move in' during data conversion. Move in rdg and code '17' (rate type change) rdg were entered.Date of 'move in' and 'rate type change' is same.
    Custoemr was getting billed for so many years.
    Few months back they do archiving of their meter reading data.
    Now when they are trying to change rate type again with current date, system is giving an error asking for initial code 17 reading which is in archived period.
    If we try to enter that reading in t code EC30, then it says the mr date is in already billed period.
    Whether anyone knows how to resolve this issue? Is it because of archiving?
    Regards,
    Reymond

    Hi,
    You can only change notification type for created notifications that are of type "General" (Notification category-05). If it is not general then you can not change in IQS22 (or other change notification transactions).
    -Paul

  • How to get bex query changes reflected in webi.

    Hi expert,
             I am using sap bex query in WEBI by BICS connection, but I have done some change in bex query, how can I get those changed reflected in webi.
    Many Thanks,

    Hi Zhang,
    Please review following link which would help you to understand the impacts of changes in the BEx Query to associated universes and webi reports.
    http://wiki.scn.sap.com/wiki/display/BOBJ/Impact+of+a+BEx+query+change+to+universes+and+WebI+documents
    Regards,
    Veer

  • How To Guide : Impact of a BEx query change to universes and WebI document

    Ever wondered about the impact of a BEx query change to your universes and Intelligence documents ? "If I change this, will I need to refresh the universe structure ? will my Web Intelligence documents break ?". This article aims at clarifying these questions for Web Intelligence documents that use OLAP Universe(s) based on BEx query(ies). More specifically, it clarifies which BEx query change does impact Universes and Web Intelligence documents and which one is transparent to them.
    The first part of this article provides a summary table. The second part explains what to do to make the universe and Web Intelligence documents reflect the BEx query change. And finally, it covers each change scenario in details with more explanation and screen shots.
    [http://wiki.sdn.sap.com/wiki/x/0wt9DQ|http://wiki.sdn.sap.com/wiki/x/0wt9DQ]

    Hi Rajesh J Salecha,
    What I understood is like :
    You have two queries and both gives same results but one of the query having a parameter.
    You have one report which is using query1.  Now you want that report to be copied as Report2 and use Query2 instead of Query1.
    If the this is the issue, then you copy Report1 as Report2 and go in Database and change the Data source location to Query2.
    Hope this will help you.  If my understanding is wrong then give us the work flow.
    Thanks,
    Sastry

  • BAPI Function for EG70 change rate data

    I am searching a BAPI function which can perform the function of EG70 (change rate data), ie, update the RateType and Fact Group is each register under an installation and device.
    Can anybody helps?  Thanks very much and point must be rewarded.

    Hi,
    ISU_DB_EASTL_RATETYPE_SELECT - Use this for selecting rate type & fact group.
    ISU_DB_EASTL_UPDATE -Use this to update rate type & fact grp at device level
    ISU_DB_EASTS_RATETYPE_SELECT  - Use this for selecting rate type & fact group at register level.
    ISU_DB_EASTS_UPDATE-use this to update rate type & fact grp at register level.
    Two tables are updated by EG70 EASTS & EASTS,you can search any FM from SE37 by ISUEAST
    Hope this helps.

  • Currency changes rates through TBEX from excel file getting erro

    Hi,
    When i am trying to upload the currency changes rates through TBEX from excel file getting error message:
    Error "The macro 'ThisWorkbook.TableBackToR3' cannot be f" occurred during macro execution
    Kindly guide what macro i need to define in excel sheet. or should i need to activate something in excel sheet relates to macros.
    Regards,
    Salil...

    When you call it the first time, it new Shell() constructs a new Display for you (the default).
    The second time, it gets the default display, but you are in a different Thread now. Since you have to create your widgets in the UI thread, it gives you that error.
    To run code in the UI thread, Display provides two methods:
    display.syncexec(..)and
    display.asyncexec(...)see
    http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/swt_threading.htm
    for more details.

  • BO XI and the constant change rate analysis

    Hello,
    We have a BI system (BO XI + Oracle) which contains sales of all countries in the world. All the amount are stored in local currency.
    We have a 10 indicators in our univers for these local currency figures and 10 other corresponding indicators for the value in Euro. The exchange rate apply for a currency is annual (and stored in the database for each currency / year)
    ->if I report a euro indicator for a country on 3 years, 3 exchange rates will be applied to the corresponding years 
    ex: for 2007,2008,2009  and Russian sales, the Turnover of the 3 years will be : Amount_2007 * Rate_2007 + Amount_2008Rate_2008 + Amount_2009Rate_2009 (this is the normal behavior of aggregation in BO)
    For the business, it's very interesting to see the evolution of sales without the change rate effect (to work with constant change rate). So to do this analysis, I would like to apply the same change rate to the sales of the 3 years to get the amount in Euro
    -> (Amount_2007 + Amount_2008 + Amount_2009) * Rate_2008
    my question:
    is it possible to work in constant rate with BO XI without to have a too complex way to do it for users ? We would like to have an object to put in condition with the values "constant rate" / "yearly rate" of better, an object with a list of years to choose the rate to apply
    thanks in advance for your answer !
    dansledoute

    Hi
    I hope you are building query like below
    Year | Turnover | Rate
    And then Multiplying 
    Euro turnover =Turnover * Rate
    For Rate measure you can use following expression (You would need to change it as per our table name)
    CASE WHEN 'CONSTANT'=@Prompt('Which Type','A',{'CONSTANT','CHANGING'},,,,) THEN
    MAX(DECODE(DATE_DIM.YEAR,@Prompt('Which Year','N','Currdim\Year',,,,),RATE.RATE)) OVER (PARTITION BY @Prompt('Which Year','N','Currdim\Year',,,,) )
    ELSE MAX(RATE.RATE) OVER (PARTITION BY DATE_DIM.YEAR )
    END
    Now if data is like below
    Rate Table
    Curr | YearMnth | Rate
    RUB| 201001 | 3
    RUB| 201102 | 4
    Above expressions will give you rate of selected same year if CONSTANT is selected. i.e.
    Year | Turover | Rate
    2010 | 3000 | 3
    2011 | 4000 | 3
    Now you can multiply Rate * Turnover to get constant turnover for 2010 rate. Basically you can create the variable at report with following definition
    =([Euro Turover] * [Rate])
    Let me know if this solves your issue.
    Edited by: Kuldeep Chitrakar on Jun 5, 2011 3:31 PM

  • Measuring data change rate

    Looking for a way to clearly determine data change rate.
    Anyone know of any tools that monitor this?
    I have been looking at redo generation and DBA_HIST_SEG_STAT.
    Any help appreciated!

    Thanks for pointing out the DBA_TAB_MODIFICATIONS view.
    It's very helpful but I was hoping for a better solution to determine the percent change in data.
    All the SAN reps ask this question and it is a very good question to ask and I should know the answer but there seems to be no simple way to do this.
    I am still working on it but if anyone has any suggestions, they would be greatly appreciated.
    Thanks.

  • BEX Query Changes are not Reflecting in WAD

    Hello SDN Experts,
    I'm  Facing a Typical Weird Issue. We got an Requirement to Create a New Variable in a Exisitng BEX Query. Assume that we have already a Variable on 0VENDOR. So I have Removed that Variabale and Added new Variable which was created by myself. So when I execute the Query I;m gettign displayed the new Variable wihch is working fine.
    But the problem is with WAD. WAD is showing both the old and new Variables. So in selection paramater it is displaying two 0VENDOR variables instead of showing one.
    Could you please Guide me how can the BEX Changes will get reflected in WAD report as well ???
    Your advice are highly appreciated
    Regards,
    Aluri

    Hello Hemanth,
    This issue may be because you only removed variable but didn't change the 'input ready' settings of it.
    Steps, go back to removed variable -- properties --- details -- then deselect 'variable is ready for input' -- save and exit -- try WAD report..
    Hope this will help.
    Thanks.

  • Table Grid in Bex Analyzer / Changing color

    Hi Experts,
    i created a workbook and would like to customize the ouput of the table grid so that after refreshing the color remain.
    I would not like to color the cells manually. I would like to change in the code in VBA or somewhere the code centrally.
    Is there a possibility to change it?
    I read somewhere it is possible to change the query template. How to do it?
    By chnaging the BW Style.css for the web template is it possible to apply it to the query ? how?
    Thank you in advance
    Cheers
    Gilo

    Hi Shafi,
    thank you very much for your time and input.
    1.
    When you colour the cells of the table grid in the Bex Analyser initially , when we refresh the data , it overwrites the formatting done locally in teh Excel. This is a standard behaviour of the Bex.
    1.1 it is possible zto change that standar behavior? Is it possible to assign the color i would like to have just for my workbook, sothat by refreshing that color remain? In WAD is possible by chnaging the style sheet in BW.
    can i anyhow change the style sheet and assign it to bex?
    2.
    If you dont want the formatting that you applied to be overwritten, you can change enter design mode. Right Click on the Table grid and select properties. Then in teh Pop Up uncheck teh option Apply formatting. This way what ever formatting that you have done it in teh Excel Locally will remain teh same.
    2.1 that is ok. But by drilling down it is not looking nice without Grid.
    The code where to change the background color, Table grid color will be possible to find and customize.
    Do you have a idea about it?
    Thanks
    gilo

  • BEx browser: change decimal separator

    Hi
    How can I change the decimal/thousand separator of BEx browser (show USD 1'000.00 instead of USD 1.000,00)?
    According to another thread in SDN the decimal notation is supposed to depend on the user configuration in the backend (su01). But changes there do not affect the presentation in BEx browser.
    I also tried to change the system (Windows) configuration of the portal server, without any effect.
    Thanks for your help.
    Kind regards
    Christoph

    Hi
    Thanks for your response
    I tried both - without any effect. I also tried all the options in rsa1 -> properties of the key figure.
    Any other suggestions?
    Kind regards
    Christoph

  • BEx formula change not working in existing Analysis for Olap/Analysis for Excel reports

    Hello all,
    I posted this in Analysis for OLAP, but there has been no response so I'm hoping perhaps you BEx experts can help me.
    I had to modify a formula in a Bex query to have it calculate the results of the formula by summation.
    I checked the query using BEx Analyzer and it summed correctly.  If I create a new analysis for olap report, it sums correctly.
    If I modify an existing report, it does not pick up the change.  Existing Analysis for Excel reports also do not pick up the new summary calculation.
    Using the CMC, I edited the connection and reselected the Bex query, but that did not work either.
    Here it is working in the query:
    Line Discount is a formula with logic checking to see if "product list price total amount" is 0, set the line discount to 0; otherwise calculate it as "product list price total amount" - Net Sale.  So the total needs to sum of the line discounts (0+2820+2820 = 5640) and not be the Overall result "product list price total amount" - Overall Result "net sale" (13960-96720= -82760).
    Here it is in an existing Webi report - working:
    Here is what is happening in an existing Analysis for OLAP report - not working:
    I also tried to unselect Line Discount as a key figure from the existing report and reselect it, but that did not work.
    I'd like to find a solution so that all the reports that use this query won't have to be rewritten.
    I'm on BW 7.0 EP 1 SP 10 and BI 4.0 SP7 Patch 5.
    Thank you for your help,
    Susan

    Hi,
    Apply Exception aggregation on line discount formula--Exception aggregation as Total---Reference characteristic as Promega product.
    Make sure to refresh the webi report once after the changes has been done.
    If this does not work then you can apply summation calculation for that column at webi level as well.
    Regards,
    AL

  • Changed rates not showing correctly

    I changed the rates eff 02/01/08 in t510j. but when testing it, since the payroll period for the ee is 01/28/08 to 02/04/08, the rate showing is new. can someone suggest what to do?
    thanks

    Hi,
    Because eff. date 02/01/08 falls b/w 01/28/08 to 02/04/08, the new rates will also come in the picture.
    If you see the payroll log and RT table, you will find 2 records 1st from 01/28/08 - 01/31/08 ( with old rates )
    2nd b/w 02/01/08 to 02/04/08 ( new rates)
    This is SAP system's behavior.
    If you don't want new rates in this period, change the eff date to 02/05/08
    Please reward point if this ans is helpful
    Saurabh

  • How to change rate in VF03

    Dear experts,
    In VF03, if I double clicking on item (exp in Internal credit memo), then click 'condition' field : condition type, name, rate, etc will be displayed.
    How to change the rate displayed through customizing, exp from 4% to 5%?
    Thank you in advance.

    Hi,
    You can maintain condition record for the condition type in VK11.
    Regards,
    Kiran

  • Bex Analyzer - Change Query Layout

    I want to change how groups are displayed in my Bex Excel Analyzer. I have a row of Cost Centre / Employee and Cost Element but I want Cost Centre to appear above Employee and Cost Element.
    E.g.
    Current:
    Cost Centre / Employee / Cost Element
    What I'd like to see:
    Cost Centre
    Employee / Cost Element
    Can this be done?
    Cheers
    Joel

    I was thinking in the Analyzer but I'll change it anywhere I can it to work. Cost Centre and Employee are in rows. But I want Cost Centre to appear above employee e.g. these are a list of all employee's in this cost centre. The columns I'm using are period and amount. That way I can show the amounts employees in different cost centres were paid per period. Cost Centre and employee are currently in the row. This is ok but having them next to each other wastes space on the page. So to have cost centre over employee seems a better use of space and is more pleasing to the eye.
    Current:
                                             April   May
    A0001 Packing John Smith £100    £100 etc
                           Jim Jones   £125    £125
    What I want is:
    A001 Packing  April  May
    John Smith      £100 £100
    Jim Jones        £125 £125

Maybe you are looking for

  • Loading data from one master data attr.to another master data in production

    Hi all, I have two two masterdata attr info objects A and B( have time dependent attr.). according to businees requirement i have included 8 objects of A TO B to make them as time dependent. all reports are designed on infosets only having these A an

  • Can no longer delete files in iTunes!

    I'm converting lots of albums in iTunes from mp3 to Apple lossless, then deleting the mp3 files. For no obvious reason, I've suddenly lost the ability to delete in iTunes. I've come out and gone back in, restarted - no effect. I've been logged on as

  • Using USB port to charge Pearl

    I can't find the original post I wanted to comment on so I am just sharing this as a new post.  Belkin and several other companies make USB hubs that have AC (110 V) adapters that power them.  If you use one of these you will never have the underperf

  • Can Apple fix the 12 bit audio problem once and for all?

    I have had persistent audio problems from I Life V3 all the way up to I Life 06. Sometimes it is synch issues. Sometimes it is audio dropping out. I have been through the various forums and applied the various remedies with some successs, some failur

  • HP Pavilion 15-e092sa has stopped working and fails to turn on.

    My hp pavilion laptop has stopped, it cut out completely as I was using it and it fails to restart. Even after taking the battery out and leaving it on charge it won't even turn on, and no lights come from the laptop. Any suggestions?