Displaying currency rate problem

Dear all,
I have amount currency in my report, when i have currency translation, my client needs to display the currency rate that is used.
Is it possible?
Thanks
Jmq

There may be differenct currency conversions like USD ---> EURO, USD --->INR etc in single query depending on data.
May be you can create two key figure both same except that one has conversion and other doesnt.
In the query output you can show only the key figure which as currency conversion.
eg: KFCONVER   KFNORMAL.
To Dispaly currency rate.
Create a new formula as which gives exchange rate :
NOIM ( KFCONVER )/ NODIM ( KFNORMAL)
Hope this helps.

Similar Messages

  • Solaris8+patch display refresh rate problem

    I have installed the 109401-05 video patch for Solaris8 to update the video
    card drivers. But now at 1600x1200 screen resolution the maximum display
    refresh rate is always 60Hz, altough higher settings in kdmconfig. The behaviour is similar at 1280x1024, but the max. rate is 80Hz. I have tryed
    this with the ATI Xpert2000pro and Xpert98 graphic cards.
    Without the patch the refresh rate is OK (with the Xpert98 card). The
    motherboard is Abit KT7.
    Does anybody know what could be the problem?
    Thanks, Albin

    Hmm, if the refresh rate was OK before you installed the 109401-05
    video driver patch, why don't you uninstall that patch? Or do you
    need some other bugfix included in 109401-05?
    Otherwise the 60Hz problem problem with certain old ATI cards is not unknown to me:
    See this Solarisonintel posting for a possible solution.

  • SQL Open Sales Orders Value using today's currency rates

    Hi experts,
    I am creating a report for displaying the open sales order values (and other fields) using current currency rate (where applicable). I developed the below query. The only problem with this query is that it ignores the order rows in which the currency field is blank (Don't understand why this happens in SAP). Do you have other ideas?
    Thanks & Regards,
    IC
    SELECT 
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date",  T0.CardCode as "Cust Code",  T0.CardName as "Customer Name",  T1.ItemCode, 
    T1.Dscription,  T3.ItmsGrpNam,  T1.U_SU,  T1.U_SULEN,  T1.U_SUQTY,  T2.InvntryUom as 'Stock UOM',  T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered", T1.OpenQty as 'Bal Qty', T1.Price*T1.Quantity/T4.Rate AS "Ord Value (GBP)", T1.Price*T1.OpenQty/T4.Rate  AS "Open Qty Val (GBP)", T1.Price/T4.Rate  AS "Price (GBP)", T1.Price*T1.OpenQty as "Ord Value (BP Currency)", T1.Price as 'Price (BP Curr)', T1.Currency as 'Cur Ind', T4.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date",  T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod, ORTT T4 WHERE T0.DocCur <> 'GBP' AND T1.Currency=T4.Currency AND T4.[RateDate] = [%0] AND T1.OpenQty > 0
    UNION ALL
    SELECT
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date", T0.CardCode as "Cust Code", T0.CardName as "Customer Name", T1.ItemCode, T1.Dscription, T3.ItmsGrpNam, T1.U_SU, T1.U_SULEN, T1.U_SUQTY, T2.InvntryUom as 'Stock UOM', T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered", T1.OpenQty as 'Bal Qty', T1.LineTotal AS "Ord Value (GBP)", T1.LineTotal/T1.Quantity*T1.OpenQty AS "Open Qty Val (GBP)", T1.LineTotal/T1.Quantity AS "Price (GBP)", T1.Price*T1.OpenQty as "Ord Value (BP Currency)",T1.Price as 'Price (BP Curr)', T1.Currency as 'Cur Ind', T1.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date", T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod WHERE T0.DocCur = 'GBP'  AND T1.OpenQty > 0 ORDER BY 2,1

    Hi,
    Try:
    SELECT 
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date",  T0.CardCode as "Cust Code",  T0.CardName as "Customer Name", 
    T1.ItemCode,  T1.Dscription,  T3.ItmsGrpNam,  T1.U_SU,  T1.U_SULEN,  T1.U_SUQTY,  T2.InvntryUom as 'Stock UOM', 
    T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered",
    T1.OpenQty as 'Bal Qty', T1.Price*T1.Quantity/T4.Rate AS "Ord Value (GBP)",
    T1.Price*T1.OpenQty/T4.Rate  AS "Open Qty Val (GBP)", T1.Price/T4.Rate  AS "Price (GBP)",
    T1.Price*T1.OpenQty as "Ord Value (BP Currency)", T1.Price as 'Price (BP Curr)',
    T1.Currency as 'Cur Ind', T4.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date",  T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod
    LEFT JOIN ORTT T4 ON T1.Currency=T4.Currency AND T4.[RateDate] = [%0] AND T4.Rate != 0
    WHERE T0.DocCur != 'GBP' AND AND T1.OpenQty > 0
    Thanks,
    Gordon

  • Retrieving currency rates?

    Hey,
    Just wondering how you'd go about getting the latest currency rates and displaying them in a Java applet? The displaying bit shouldn't be a problem, it's how to get the rates I don't know how to do. Is there any website out there I can download the currencies from or any classes already made to do what I'm looking for?
    Thanks,
    Brian

    http://www.google.com/search?q=exchange+rates+web+service

  • Cross-currency clearing problem

    Hi,
    Foreign cross-currency clearing btw USD & EUR is a business requirement for us (local currency is TRY). In order to do this right we maintain exchange rate table for cross currency rates btw USD & EUR. However in clearing transaction code (F-44), system calculates line item amounts as explained below:
    "You can clear open items in any currency.
    The amount of all the selected open items will automatically be translated into the currency in which clearing is to take place. The translation is executed as follows:
    Item currency - Local currency - Clearing currency.
    You are therefore not required to make additional entries in the exchange rate table for cross-currency clearing."
    In this case, when we try to clear USD & EUR documents, amounts are not matching. Is it possible to calculate amounts displayed in clearing transaction accoring to cross currency exc. rates ?
    An example i have is as follows:
    Invoice Amount: 25,000 USD
    Invoice Date: 1st May 2011
    USD to TRY rate: 1,51410
    EUR to TRY rate: 2,24960
    USD to EUR rate: 0,67304
    Payment Amount: 16,810 EUR
    Payment Date: 5th May 2011
    USD to TRY rate: 1,53060
    EUR to TRY rate: 2,27630
    USD to EUR rate: 0,67240
    According to this example, if you try to clear invoice with payment on 5th May 2011 in USD, payment amount is displayed in F-44 as 24,999,74. In fact it is 25,000 USD if you use cross currency rate of 0,67240.
    Regards,

    Hi again,
    Thank yoy for the advice but clearing in company code currency doesnt really work. Because there is difference in terms of comp. currency and this difference has to be posted to curr diff. gain/loss account. If we try to clear it remains in the vendor account.

  • Display the document currency instead display Currency in Report

    Hi Experts,
      I am having  a query in support system, in that one characteristic called document  currency is there under Unit Dimension and this Doc currency info object  having the Display currency and Document currency as Variables. Document currency Info object is in Free characteristics without related  variables (Disp.curr and Doc.curr)
    When I execute the query  defaultly Display currency will appear as a  variable in selection screen, because customer exit(cmod) has created like that
    Now user want to display the document currency instead Display currency  in the report, may I know how can I solve this problem?
    Here I am unable to get the customer exit  detatils and which program is there in CMOD, can anyone suggest me, how I will get the details?
    And one more requirement in this CR, that is user want to display the key figure amount in the report should be displayed with the document currency amount only
    May I know, want to do any settings for this?
    Thanks to All
    Regards
    Mrudula

    Hi rajesh,
    1.customer exit value you can change in CMOD,select your project and go to components  and select EXIT_SAPLRRS0_001.there go to  include zxrsru01,and change  display variable to document currency variable.
    2. if u want to display your key figure value in document currency ,,go to that key figure info object ,,,in currency ( reference) field give document currency info object.Then map the respective amount value again in transformation.load the data, now  in report document currency will be displayed along with key figure amount.
    Thank you,
    Joseph

  • Display Currency tab during General ledger view in T-Code F-53

    Hi
    When Iam making a payment in foreign currency using T-Code F-53, then on simulation of the document in the General Ledger View (Ctr+F12), Iam trying to press the tab 'Currency' (F9), however, it shows blank, there is no currency visible in it.  However, when I press the same tab during Entry view simulation, it shows all the three currencies maintained.
    Can anybody analyse the situation and tell me what can be the problem.
    Regards
    Abhishek Kumar

    Hi,
    If you have activated New GL then check in Financial Accounting Global settings (New) > Ledgers > Ledger >
    Define currencies of Leading Ledger.  Secondly, you have to check in FBZP, the payment method in country >
    Currencies allowed - If you have not defined anything all the currencies will be taken.  In F-53 when you
    processing the transaction itself, you can see three currencies, i.e. local currency, group currency, and
    hard currency translations. If you click display currency F8, the system will give a pop up for selection
    based on document currency(by default), local currency, group currency and hard currency.  Please check
    and revert back.
    Regards,
    Sadashivan

  • Currency rate not maintained for Pre- Euro data

    Hi experts,
    We have certain orders in BW Production environment from before the EURO zone. These orders have different local currencies eg. DEN. In BW reports the translation can not be executed, due to NO available currency records for DEN->EUR.
    This happens for Exchange rate types which do not have EUR as reference currency.
    How do we go about fixing this in BW?
    Thanks

    dear,
    Currency Translation Type
    A translation type is a combination of different parameters that establish how the exchange rate for the translation is determined.
    check link for more details
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6806e07211d2acb80000e829fbfe/frameset.htm
    Creating Currency Translation Types
           1.      On the SAP Easy Access screen for SAP NetWeaver Business Intelligence, choose SAP Menu ® Modeling ® Object Maintenance  ® Currency Translation Types.
           2.      Enter a technical name for the translation type. The name must be between three and ten characters long and begin with a letter. Choose  Create. The Edit Currency Translation Type screen appears.
           3.      Enter a description.
    Exchange Rate Tab Page:
           4.      Choose Exchange Rate Type or Ex. Rate Type from Var. to determine the exchange rate dynamically. With Ex. Rate Type from Var. you can select any variable that has been created for 0RTYPE using input help.
           5.      Choose Dynamic Exchange Rate Determination or enter an InfoObject (key figure) to be used to determine the exchange rate. The latter is only supported with updates.
           6.      Determine whether you want to perform the currency translation with the inverse exchange rate. In this case, the required translation from one currency to another is performed using the reverse exchange rate. This can be useful, for example, when values have already been translated and you need to restore the original values.
    Currency Tab Page
           7.      Under Source Currency, choose whether the source currency is:
    ?       Determined using the data record
    ?       Based on a fixed source currency
    ?       Determined using an InfoObject. Specify the InfoObject you want to use to determine the source currency. For more information, see the example under Defining Target Currency from InfoObjectss.
    ?       Determined using a variable
           8.      Under Target Currency, choose whether you want to determine the target currency when translation is performed or in the translation type.
    If you are determining the target currency upon translation, you can either specify a fixed target currency in the Query Designer (as a property of a key figure of type Amount) or specify a variable to be used to determine the target currency. See Setting Variable Target Currencies in the Query Designer.
    If the target currency is to be determined in the translation type, choose either
    ?       A fixed target currency
    ?       A target currency from a variable; you can use input help to select any variable that has been created for 0CURRENCY
    ?       Alternatively, an InfoObject from which the target currency is to be determined
    Note that with InfoSets, the InfoObject can occur several times within the InfoSet and therefore may not be unique. In this case, you have to specify the unique field alias name of the InfoObject in the InfoSet. The field alias name consists of: . You can display the field alias in the InfoSet Builder using Switch Technical Name On/Off.
    Example: In the InfoSet ISTEST, characteristic 0CURR occurs twice. The field alias names are ISTEST___F00009 and ISTEST___F00023.
    Time Reference Tab Page
           9.      Select a fixed or a variable time base for the currency translation.
    ?       With a fixed time reference, you can choose between:
    ¦       Selection upon translation
    ¦       Current date
    ¦       Fixed key date
    ¦       Time reference using a variable (variable for 0DATE)
    ¦       Query key date. In this case, the time reference is the key date that is set in the query properties in the Query Designer.
    ?       With a variable time reference, you can choose:
    ¦       Standard InfoObject (standard time characteristic: 0FISCYEAR, 0FISCPER, 0CALYEAR, 0CALQUARTER, 0CALMONTH, 0CALWEEK or 0CALDAY), which is used to determine the time of the translation
    ¦       Special InfoObject. This special InfoObject has to have the same properties as the standard InfoObject or it has to reference the standard InfoObject. The aforementioned notes on using InfoSets also apply here.
    ¦       In the Time Adjustment field, whole numbers with +/- sign
    ¦       In the Time Adjustment from Variable field, you can specify formula variables (1FORMULA) 
    The time adjustment (regardless of whether it is fixed or variable) is always related to the InfoObject specified under Variable Time Reference.
       10.      Save your entries.
    also check this
    http://help.sap.com/saphelp_nw04s/helpdata/en/80/1a6813e07211d2acb80000e829fbfe/frameset.htm
    Editing Currency Translation Types
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6820e07211d2acb80000e829fbfe/frameset.htm
    Creating Variables for Currency Translation Types
    http://help.sap.com/saphelp_nw04s/helpdata/en/10/1e1241b18aef6fe10000000a1550b0/frameset.htm
    Trnsactions for Doing Currency conversion
    If you are using SAP Netweaver 2004s and BI 7.0, use Tcode RSCUR
    RRC1 Create Currency Conversion Type
    RRC2 Edit Currency Conversion Type
    RRC3 Display Currency Translation Type
    Transaction for maintaining currency translation is OBBS and for exchange rates OB08
    Hope it helps
    Regards
    Bala

  • Fixing transactions posted with the wrong currency rate.

    Looking for the best solution to fix transactions that have been posted with the wrong currency rate. Transactions with System Currency (SC) and Local Curency (LC) have been posted with the wrong exchange rate.  I am looking for best practice to corect each transactions.  I have noticed and tested the "Conversion Difference" feature in SBO.  This feature does help me change the exchange rate between SC and LC but for an the account balance on a certain date.  I am looking to change all transactions from Jan01 to Jan 31 for all GL accounts.  Is there a feature to do this??  You help is greatly appreciated,

    I don't think there are any options to FIX this problem by out of the box function.  Because all financial transactions have been entered to the system already, you have to reverse all of them and repost those transactions with the right exchange rate. No shortcut available.
    Thanks,
    Gordon

  • BEx Currency Translation for planned Currency rate

    Dear Experts,
    The requirement of my query is to convert the key figures to Group Currency (EUR) at a fixed exchange rate defined by the user in the beginning of a planning cycle.
    In the IMG I have created an Exchange Rate type for manual input and defined the exchange rate for a fix date for the currencies I want to convert.
    When creating Currency conversion type (tcode RSCUR) in the tab “Exchange Rate” I’ve chosen my Exchange Rate type and the option Dynamic Exchange Rate Determination. In the “Currency” tab I’ve chosen a variable of manual input for the currency and the option Target Currency Selection with translation. In the “Time Ref.”  I opted for a fixed time reference.
    On the query definition I choose Currency conversion type and the variable I created for it. 
    Can anyone tell me how can we allow the user to commute between the two currencies in the query for the same translation?
    Another question/problem is that we are using the table TCURR for keeping the exchange rates for the planning process. Does anyone has a different solution to keep this currency rates?
    Many Thanks and Best Regards,

    Hi
    So these planning functions work in the same way as the BEx Currency translation? it makes the currency conversion to present the data in the new currency. If I save the data I will keep the data in the new currency, am I right?
    **Yes.**
    If I am using the same Key figure for source and target key figure can I still use the standard IP function?
    **Yes.**
    And if I wanted to convert back to the original currency I had to create a new planning function and a new currency translation type to do the opposite?
    **You can try Repost Function.**
    Regards
    Srinivas

  • Currency rate vs custom 3 and custom 4

    Hi all
    I have used all currencies in custom 1 and required currency in custom 2 for entering currency rates. Now for custom 3 and custom 4, Do these have to be [None] only( and that too as base members? ??
    A wild example i came up with
    Assume I have two times in custom 3..one is 11:00 AM and other is 11:00 PM and custom 4 are the dates..i.e 1st 2nd 3rd and so on till 31st.
    I need currency rates at these two times daily and I have these in custom 3 and 4 dimensions say. So how do i go about entering currency rates?
    Question 2)
    If I need to enter data at custom dimension level, does the member necessarily have to be under [None] ? If not then how do i go about? Since when I take the member out of [None] and keep it at a sibling level of [None] , I cannot enter data at that member but If I keep the same as a child of [None], It will allow me to enter data. So how do i go about this?
    Question 3)
    This is basically a combination of Q1 and Q2..If I have a member under [None] in custom 3 dimension, I cannot use custom 3 as [None] while entering Currency rates since [None] becomes a parent. If I keep the member as a sibling of [None] in custom 3 dimension, then I cannot enter data at that member, but I can enter currency rate at [None].
    Please help me resolve these 3 problems.
    Thanks!

    i think you are trying to do things not supported by HFM.
    you are correct, when entering currency rate data in HFM, both custom3 and custom4 must be set to [None] member.
    these are the types of custom rate that are used by the "Translation" feature in HFM and Sub Translate()
    i do not know how you could have different currency rates in the same rate accounts for different times of day. I do not think HFM is normally used in this way. You would probably need to use Multiple different rate accounts for the different times of day, and then write complicated rules in the Sub Translate() to use the different rate accounts depending on the target cell POV.
    I suggest you reach out to someone who has experience in designing HFM applications to see if there is any way to achieve your goals using HFM.

  • Poor display refresh rate during playback

    When I say "display refresh rate" I'm talking about the various toolbars,  level meter and the clock.  I'm not talking about the time coding like in frames  of a video clip vs. minutes/seconds/decimal but how fast those toolbars visually  refresh their information.  In Cool Edit Pro 2.1 they were real-time.  Level  meter and clock would refresh at the max speed of 61 frames per second (limited  by monitor).  However Audition refreshes at what I am guessing is around 12-15  FPS.  The level meter is like watching stop motion animation and the clock skips  along by fractions of a second instead of a smooth continuous spin.  That rate  makes the whole program appear sluggish and the level meter bars do not peak,  just the resulting tic mark appears.  The sound is fine and uninterrupted.
    It is not a hardware issue.  This is primarily a gaming rig  (Nvidia 280 GTX, X-FI Fata1ity, Intel Quad core, 4GBs RAM, Vista 64x, etc.).  I do  audio editing as a side job.  I've used versions of Cool Edit Pro for nearly a  decade on many machines including this one and I want to upgrade to a  multi-core/multi-thread version to make editing faster.  Is there a setting  somewhere to set faster display refresh rates?

    KougarLOB wrote:
    Is there a setting  somewhere to set faster display refresh rates?
    I don't think so. That would be the setting that replaces any form of Vista with XP, I suspect, and M$ thoughtlessly didn't add that... but you could try turning off every single service that isn't needed, and try unplugging any form of networking connection - the polling these do can screw the response of your entire system. That's why dedicated DAWs are built - to get around all of the throttling that your average or gaming PC does. Look for an app like EndItAll, and run it before processing audio. No, I don't know why it happens, but there have been problems with video displays almost forever with CEP/Audition - simply because as an app, it doesn't prioritise video.

  • Currency Rates-OB08

    Hi
    I have a problem with the currency rate maintenance.
    In my scenario, there are 7 company codes and each using different currencies.  I have maintained EUR as a reference currency and maintained the rates of each of these currencies into EUR (total 7 combinations).  When I do the transactions in any of these currencies in any company codes, system is automatically calculating the rates and no issue from FI side.
    However, as per the MM Consultant, while he is setting the release procedure for all the company codes, he requires to do all the combinations of exchange rates for all the currencies i.e. totally 49 are required to be made.  Otherwise, he says system issues error message. 
    I do not understand why this is so ?  How the currency rate setting in exchange rates using a reference currency is not sufficient with regard to MM settings are concerned ?  If this is the case, it is so tedious to maintain all the rate combinations.
    Pl. help me to resolve this issue.

    Hi Nikitha,
    OB08 is one time activity for every month.SO this is required to be maintained for every period and every combination otherwise how sytem will calculate the currency conversion
    thanks
    Deepa

  • Display Currency symbol with value in ALV Report

    Hi Experts,
    I need to display currency symbol with value in ALV Report like if currency type is dollar then $200.
    Here I am using field catalog type slis_t_fieldcat_alv and suing field merge catalog FM: 'REUSE_ALV_FIELDCATALOG_MERGE'
    I tried like this
        IF <fs_fieldcat>-fieldname = 'STPRS'.
          <fs_fieldcat>-seltext_s = 'Std Cost '.
          <fs_fieldcat>-seltext_m = 'Std Cost'.
          <fs_fieldcat>-seltext_l = 'Std Cost '
           <fs_fieldcat>-tabname = 'MBEW'.
          <fs_fieldcat>-ctabname = 'T001'.
          <fs_fieldcat>-cfieldname ='WAERS'.
          <fs_fieldcat>-datatype = 'CURR'.
        ENDIF.
    Please any one can suggest the solution for this.
    Advance Thanks.
    Regards,
    Bala Achari

    Hİ,
    Check this link.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=24379571
    Take care.
    Çağatay

  • Using a IP191 monitor, have random horizontal streaks on display - have no problem with other browsers; also no problem with FF on other family PC's

    Using a IP191 monitor, have random horizontal streaks on display - have no problem with other browsers; also no problem with FF on other family PC's.
    These "streaks" appear to be area of too high frequency scanning; they can be cleared by scrolling up and/or down.

    hello, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]], or in case this doesn't solve the issue or there is no new version available at the moment, disable hardware acceleration in the firefox ''menu [[Image:New Fx Menu]] > options > advanced > general''.

Maybe you are looking for