Currency Conversion type not visible in the query

Hi ,
I created one currency type conversion   Z_INR
exchange rate type : M
Exchange rate from infoobject : zexch_rate(key fig)
source curr from data record
Fixed target curr : INR
Variable time reference  : A to Exact Day
Special info object : Ztr_date (Transaction date)
it got saved succesfully but wen i try to include  this in the query its not visible there . can anyone let me know why this problem is coming
help will be appreciated .
i also included rate and date in the query still not visible

Hi,
Create Currency conversion type using Trans: RRC1.
1.Specify your Exchange rate type.                     
2.Dynamic Exchange rate type
3.Source curency from data rec.
4.Fixed currency say USD.
5.Select Variable Time reference "Start Month" and Special Info Object - 0calmonth
Secondly In the key figure field to be converted in the query,   select properties - select the currency conversion key name .
Thanks,
Nagesh
Sony Singapore

Similar Messages

  • Currency Conversion types not visible for KF in BEx report

    Hi Gurus,
    I'm facing a strange issue with the curr conversion types.
    I had created a KF with 0currency for my requirement. when i'm trying to create a report on the top of the MP i'm facing this issue.
    When i right click on the KF --> selected "properties" at the bottom - we have "curr conversion types" -- here i can't see all the curr conversion types for my KF.
    Where as i checked for other KF i can see the missing currency conversion types.
    Did any one faced such issue...? please throw some light on this issue.

    HI,
    Goto RSA1 ,
    double click on you KF info Object ,
    there you can see the unit 0currency is been selected , Only those key figure which has been assigned 0currency can only be converted in Bex query.  
    Regards
    BVR

  • Currency conversion by Calendar month in the query?

    Hellow...
    Users want DB currencies when executing query at first. And then want to change currency conversion by Calendar month in the query, if navigating by target currency. Tried as created TEST Currency Translation Key. Database currency is different currencies.
    Appreciate your help.
    Don.

    Hi,
    Create Currency conversion type using Trans: RRC1.
    1.Specify your Exchange rate type.                     
    2.Dynamic Exchange rate type
    3.Source curency from data rec.
    4.Fixed currency say USD.
    5.Select Variable Time reference "Start Month" and Special Info Object - 0calmonth
    Secondly In the key figure field to be converted in the query,   select properties - select the currency conversion key name .
    Thanks,
    Nagesh
    Sony Singapore

  • Currency Conversion type not in Query

    Hi,
    I have created a Currency Conversion Type using transaction RSCUR.
    In the query i want to convert a particular column to target currency by using this curr conversion type.
    But in the column properties under the conversions tab, the conversion type does not appear in the drop down.
    Kindly suggest.
    regards,
    Vedaas

    If you have followed the links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/462fe790-0201-0010-3ca4-adfd89e4f9f2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/287bab90-0201-0010-f48e-cc55b0cd13d0
    Then log on and off the Query as it may be due to a refresh issue you can't see it.

  • Attribute not visible in the Query Designer

    Hi,
    I am not able to see 0BPPartner as attribute of object 0Customer in the Query designer .It is marked as display attribute.For some user its visible & for Some not.
    Please help me its very urgent.
    Thanks & regards,
    Anita

    Hi Anita,
    As you stated earlier that some users are able to see it and some are not then it surely is a Authorization/Profile issue. Speak to the BASIS/person who manages this to resolve the issue.
    Bye
    Dinesh

  • Pricing Condition Type - Not visible to the customer

    Dear All,
    What all the config need to set up in the pricing procuder for a condition type to ensure customer did not wish to see the value for the particular condition type on the invoice. However it should have the ability to value in the condition type automatically post to the correct accounts at the time of invoicing.
    Thanks in advance.
    Victor

    Hi victor
    If nobody should change the condition type at billing level or sales order level also  means then go to V/06 and set the field  Manual Entries - D .
    Secondly, in VTFL change the pricing  type to C or D then changing the condition type manually is not possible
    Regards
    Srinath

  • Repeating frame not visible when the query returns no rows

    I've developed a report whose output looks like this:
    Subinventory | Part Code |Part Description |Ordered Qty | Received Qty
    Mentone St | BATT | non serialised item | |
    Mentone St | SONY | spare parts MIN MAX | 30| 0
    In the above report
    subinventory, Part Code, Part description are in one repeating frame and Ordered and received qty are in other repeating frame.
    for a perticular part code there may not be ordered or received quantities. Means the seond query fetches no rows for the perticulat partcode. In that case report is showing null(blank) but I want to print ZERO there.
    If I use NVL in the query it'll effect only when the query fetches some rows.
    I've tried with formula columns. for example in the formula column
    IF :ordered_qty IS NULL THEN
    v_ordered_qty :=0;
    ELSE
    v_ordered_qty := :ordered_qty;
    END IF;
    return(v_ordered_qty);
    I've assigned this formula column as source to the Ordered Qty Filed. Then also its not working.
    Any help in this regards is highly apprecialted
    regards,
    Vij

    may be you can modify your code like below:
    SELECT i.subinventory, i.part_code, i.part_description, i.min_qty, i.max_qty,
           NVL (j.quantity, 0) ordered_qty,
           NVL (j.quantity_delivered, 0) received_qty
      FROM (SELECT DISTINCT c.secondary_inventory subinventory,
                            b.segment1 part_code, b.description part_description,
                            c.min_minmax_quantity min_qty,
                            c.max_minmax_quantity max_qty, b.inventory_item_id,
                            b.organization_id
                       FROM mtl_system_items_b b,
                            mtl_item_sub_inventories_all_v c
                      WHERE b.inventory_item_id = c.inventory_item_id
                        AND b.organization_id = c.organization_id
                        AND UPPER (c.secondary_inventory) =
                               NVL (UPPER (DECODE (:p_sub_inv,
                                                   'ALL', '',
                                                   :p_sub_inv
                                    UPPER (c.secondary_inventory)
                                   )) i,
           (SELECT   mtrl.inventory_item_id, mtrl.organization_id,
                     mtrl.to_subinventory_code,
                     NVL (SUM (mtrl.quantity), 0) quantity,
                     NVL (SUM (mtrl.quantity_delivered), 0) quantity_delivered
                FROM mtl_txn_request_lines mtrl, mtl_system_items_b msi
               WHERE mtrl.inventory_item_id = msi.inventory_item_id
                 AND mtrl.organization_id = msi.organization_id
                 AND mtrl.reference_type_code = 2
                 AND UPPER (mtrl.to_subinventory_code) =
                        NVL (UPPER (DECODE (:p_sub_inv, 'ALL', '', :p_sub_inv)),
                             UPPER (mtrl.to_subinventory_code)
                 AND TRUNC (mtrl.creation_date)
                        BETWEEN NVL (TRUNC (TO_DATE (:p_from_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
                            AND NVL (TRUNC (TO_DATE (:p_to_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
            GROUP BY mtrl.inventory_item_id,
                     mtrl.organization_id,
                     mtrl.to_subinventory_code) j
    WHERE i.inventory_item_id = j.inventory_item_id(+)
           AND i.organization_id = j.organization_id(+)

  • Currency Conversion Type missing in BEx

    I have created a new conversion translation type M1 based on Monthly Average exchange.
    RSCUR definition for  this conversion on the time ref tab to be a "variable time reference"- End of Period for
    Standard Info Object Fiscal Period "0FISCPER".
    Is this configuration the cause for placing a limiting restriction on the visability of this selection at runtime of query.
    The following currency translation types are not available at the runtime of the query.
    ●      Translation types for which a variable is stored (variable time reference, source currency from variable, target currency from variable, and so on).
    From BEx I am unable to select Currency Conversion (Convert to Currency USD) and Use of Currency Translation M1
    Thank You ...... Dan

    Andrey:
    Once BEx query results are displayed in M/S excel ... the user navigates (right click) to (local) query properties:
    Tab >> Currency Conversion >> select Convert to Currency will open option to determine Currency (USD) and Currency Translation (via drill down).
    Those Currency conversion types configured with variable time reference on InfoObject 0FISCPER cannot re-determine
    target currency values. Fixed Time reference conversion types can be selected through BEx.
    I found a restriction/ limitation in the following thread.
    http://help.sap.com/saphelp_nw70/helpdata/en/ec/076f3b6c980c3be10000000a11402f/frameset.htm
    Restrictions:
    The following currency translation types are not available at the runtime of the query.
    ●      Inactive translation types
    ●      Translation types for which a variable is stored (variable time reference, source currency from variable, target currency from variable, and so on)
    ●      Translation types in which an InfoObject is used for determining the source currency or target currency.
    Are you aware of any way around this ??
    Thank you ....... Dan

  • How to move currency conversion types

    Dear All
    my problem is currency conversion types and fixed&target currency is showing development but in production its not showing aft i came to know i hav to move
    currency conversion types to production. i checked in rscur tcode where i got this list here i cant understand which currency type i hav to move
    1.0HRFIXCUR     Fixed Target Currency, Current Date
    0MEANDAILY     Middle rate using exact days
    USD_VAR     usd with var rate
    VAR_ALL     Multiple Curencies
    ZCC01     Cost Center
    ZCUR_1     Target currency type
    ZCUSTTR     Local currency
    ZNEWCUR     New Currency Type
    ZTEST1     Conversion currency translation
    2.in development i hav seen currency variables are there but for the same i hav checkded production currency variables are not there
    its mandatory to move currency variables also production
    iam in bi7 sp13 actually previously its working we applied some patches in r/3 fi then only we are facing this problem
    can you please help me to close this issure
    thanx for all

    please close this thread and see the other one...

  • Currency conversion type with variable for target currency

    Hi,
    I use a currency conversion type with a bex variable for target currency in a query in order to convert a Key Figure. It works fine but instead of short text description there's the technical description of the variable in the selection screen. How can i change the description of the variable ?
    For information, in the bex, we can't see the variable in "variable sequence". I use BI 7.0
    François.

    Hi,
    The problem was that in the maintenance of the currency translation type the option  Target Currency from Variable” was checked. As a consequence in the properties of our key figure the drop-down-list Target Currency was set to  from variable” with no chance of changing it (it was grey).
    What we can do was to choose the option  Target Currency Selection with Translation” instead of  Target Currency from Variable”. Now, in the properties of the key figure we can choose the variable in the dropdown-list Target Currency and tick the option “Variable Entry”. As a result, the variable shows up in the query properties and we can change its arrangement.
    Regards,
    Siva Patil.

  • Currency conversion Type

    Hi experts,
    I created a currency conversion type in transaction RSCUR. My problem is I don't see this in BEx query designer. I used an existing one as template and experienced the same. Did I miss something or is it a system bug?
    For your info we are running BI7 SP6
    Regards
    Aban
    Edited by: Abolfazl Hassanzadeh on Feb 18, 2011 2:47 PM

    Hello Vikas,
    Please don't post the same question multiple times. You have alread posted the same question 3 times here.
    Please see the other thread that you have posted for answers.
    Thanks
    Chandran

  • Currency conversion type by customer exit variable doesn't work

    Hi all.
    In my query I need amounts by quarter, applying quarters last date rates as currency conversion.
    Query has Year parameter. Based on this parameter, by customer exits I calculate every quarters last date and use them as currency conversion types.
    The problem is that query DOESN'T APPLY currency conversions!
    I checked TCURR table - currency conversions do exist for applied days
    I checked my customer exits - the date calculation works fine
    I suppose where is something wrong in query processes (customer exits/currency conversions) sequence before running it.
    Someone knows anything 'bout that?

    Check these docs.. and check again.
    [Creating Currency Translation Types|http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6813e07211d2acb80000e829fbfe/content.htm]
    [Use Variables for Currency Conversion|http://www.scribd.com/doc/7061035/How-to-Use-Variables-for-Currency-Conversion]

  • Transporting currency conversion types

    I created a new currrency conversion type (trans RRC1). When I saved it, a message stated that it was successfully created/saved. However, I don't see it attatched to any of my transports (I only have 2), and it did NOT prompt me for a transport.
    In addition, When I go to the transport tab of RSA1, I searched for it with it's technical name and it could not be found there.
    Finally, I thought perhaps that they are untransportable, so I thried to directle create one in the BWQ system, however, it would not lety me.
    SO, My Question is:
    How do I collect/transport a currency conversion type object?
    Thanks!
    Mark

    Thanks so much!!!! I went there & did that prior to my note, I just didn't notice that category. So Thanks again, you're great!!!
    Mark

  • Currency conversion - LC not converted

    Hi,
    I'm strugling with currency conversion at the moment. I'm using BPC NW 7.00.02.
    The script seems to be OK and the script return successfully when I run it. I have entered rates for the 2 reporting currencies I have in the model, but for some reasons these reporting currencies are not converted. I have used the guideline for "Currency Conversion Setup" and entered all the properties required.
    I have tried to optimize the applications, since some of you had success using this approach. But, It didn't solve the problem for me.
    If I run the script from the script_tester in SAP, I can see that no numbers are catched.
    Here's the script I'm running:
    *RUN_PROGRAM CURR_CONVERSION
          CATEGORY = %HT_CATEGORY_SET%
          CURRENCY = %HT_RPTCURRENCY_SET%
          TID_RA = %HT_TIME_SET%
          RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    Any idea why the numbers are not converted?
    /Lars

    Lars,
    You had mentioned that you maintained the properties for GROUP in your currency dimension? Was your application the consolidation type? What additional properties did you have to add? Would appreciate your help.
    Thanks.

  • Supplier not visible in the Purchase Order Menu

    Hi All,
    I have created a Supplier and a Supplier Site from the back end using Supplier Conversion.
    It was successful and I am able to see the customer in the Supplier menu in Payables and Supplier base menu in the Purchasing, but the supplier is not visible in the Purchase Order Menu in Purchasing.
    I have Enabled the following flags in the Supplier Site Level,
                   l_vendor_site_rec.purchasing_site_flag := 'Y';
                   l_vendor_site_rec.pay_site_flag := 'Y';
                   l_vendor_site_rec.rfq_only_site_flag := 'Y';
    What else do I need to enable in Supplier level for the Supplier to be visible for Purchasing.
    Please give me a solution so that I can resolve my issue.
    Thanks in advance.
    Regards,
    Bhaskar.

    Hi,
    You will have to achieve this through APIs, Please do some google and refer Oracle docs.
    Following are some links, which may interest you:
    R12 Oracle Apps: Supplier or Vendor Creation API
    Oracle EBS Technical Step By Step: August 2012
    Hope this helps!
    Best Regards

Maybe you are looking for

  • How to access my hard drive over the internet?

    Hi, I would like to be able to access my hard drive while I am away from my desk. I am not running OS X Server. How can I do this? Also, I am behind an Airport Base Station. Which ports would I need to open up? Besides my Firewall and my Administrato

  • Re:Messages not being marked "as read".

    I have all my devices tied into icloud. When I read a message in Mail on any of my devices it used to be marked as read on the others. It has stopped doing this. Any idea how to fix this?

  • Disable framebuffer support??

    What do I lose if I disable framebuffer support in the kernel? My console has been unusable (text is huge and doesn't fit on screen) since I did a pacman -Syu a couple of weeks ago. I'm thinking that building my own kernel with framebuffer support di

  • Hide and Show Region Problem

    Hi, I have created a report with the following attributes: Region Definition User Interface - Hide and Show Region; Report template -Standard; Sort Columns - all checked. Report source - SQL Query (PL/SQL Function Body returning SQL query). I open a

  • Workflow Multiline

    I have a Z business object. I have declared parameter in Business object as multiline. Same i declare it in task. I have a module pool, in which i am having one table control with one column. There is one button through which i can send the mail. I u