About Curency Conversion

Hi,
Can you Please tell me about the Function modulle to convert amount from EUR to USD.

Hi,
Please refer the following thread :
Re: currency translation
The specified item was not found.
Also please check FM BAPI_EXCHRATE_GETCURRENTRATES, BAPI_CURRENCY_CONV_TO_EXTERNAL .
Best regards,
Prashant

Similar Messages

  • Can anyone Explain about Data conversion for Material master In SAP MM

    Can anyone Explain about Data conversion for Material master, Vendor  In SAP MM
    Thanks

    Hi,
    Refer following link;
    [Data Migration Methodology|http://christian.bergeron.voila.net/DC_Guide/Data_Migration_Methodology_for_SAP_V01a.doc]

  • Doubt about unicode conversion

    Dear Friends,
    I have a doubt about the unicode conversion. I have read (one server strategy) that I have to do export (R3load), delete the ECC 6.0 non-unicode, install an unicode database and then import with R3load. My doubt is about the deletion of ECC 6.0 non unicode. Why?  can I convert to unicode only with an export (R3load) and subsequent import (R3load) without any deletion?. Obviously I must to change the SAP kernel with a unicode one. Is it correct?
    Cheers

    you can not convert a SAP System to unicode by just exchanging the executables from non unicode to unicode ones.
    a non unicode SAP Oracle database is typically running with a database codepage WE8DEC or US7ASCII (well this one is out of support).
    so every string stored in the database is stored using this codepages or SAP-Internal codepages.
    When converting to unicode you have to convert also the contents of the database to unicode. As unicode implementation starts at a time where Oracle did not support mixed codepage databases (one tablespace codepage WE8DEC the other one UTF8) inplace conversions are not possible. To keep things simpler, we still do not support mixed codepage databases.
    Therefore you have to export the contents of your database and import it to a newly created database with a different codepage if you want to migrate to unicode.
    regards
    Peter

  • Problem about currency conversion

    HI,
    I have added one field KWERT from KONV to copa data source.Then value is coming in USD.
    I want currency conversion means i want value into EUR and INR .
    SO please tell me how to write code for currency conversion?
    Thanks
    Regards
    Devesh Babu

    Hi,
    Create Currency Translation Type
    T-code for Creating Currency Translation Type in BI 7.0  is  RSCUR.
    Select Source and Target Currency.
    Give Time Reference.
    For the Currency translation to take place in the Business Explorer you must have already created a currency translation type.
    Currency Translation in Business explorer can be done in two ways:
       Currency translation in query definition.
       Currency translation in the executed query.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2056ef93-2004-2d10-21ae-f973bb48d7a1?QuickLink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0d5bf96-b19b-2c10-e3b6-e2f12a3de99a?QuickLink=index&overridelayout=true u2013 currency concersion
    Regards,
    rvc

  • Need help about PDF conversion

    I have red words in a text box using publisher. How come the text show up as black after PDF conversion in Adobe?

    Hi,
    I have windows 8. I am using Microsoft publisher 2013. I want to make a postcard. I made a text box and my text in the box are red. Then I click save as to convert to a PDF file. It works. It opens on Adobe but the text in the text box are black and not red. What can I do to retain the original colors?

  • Quastion about type conversion mapping

    What does the type convertion mapping serve for in jdeveloper 10g?
    Cant find any meaningful examples.
    I think it sould be used for escaping java coding if it is necessarily to change automatically generated data types...or to supply some specific format like to_char function in sql... But it seems that neither functionallity is supporteds
    Thanks. Alex

    There is some more current info here:
    http://wiki.eclipse.org/Introduction_to_Mappings_(ELUG)#Type_Conversion_Converter
    But this is for the TypeConversionConverter in EclipseLink, which is mostly the same (the TypeConversionMapping in 9.0.4 became the TypeConversionConverter in 10.1.3).
    It is basically to handle converting from one type in Java such as Calendar to another type in the database, say DATE or even VARCHAR, etc. It can handle most obvious conversions. Many conversions will also work without a converter, or at least work most of the time depending on if the database auto converters types, but some databases are more picking on the type that is bound matching the field type.
    James : http://www.eclipselink.org

  • I am reading about this conversion from an AOL username to a new Apple ID. Is this legitimate and will I lose access to purchases?

    is this conversion from an AOL username to a new Apple ID legit? Will I lose access to purchases?

    Hi Kellyezvous,
    Thanks for participating in the Apple Support Communities.
    The conversion from AOL Username to Apple ID is legit, and you will not lose access to your iTunes Store purchases as a result of this change.
    For more information, see this Apple Support page:
    Convert your AOL Username to an Apple ID - Apple Support
    You must convert your AOL Username to an Apple ID to maintain access to the stores and to content you purchased previously.
    Apple can't provide support for AOL Username accounts that aren't converted by March 31, 2015. The conversion process applies only to AOL Usernames. You don't need to convert an Apple ID that ends in @aol.com. Also, this transition doesn't affect any AOL services that you use with your AOL Username.
    Cheers,
    Jeremy

  • Question about UoM conversion

    I'm trying to implement the UoM conversion that is now standard in BI 7.0.  I think I have all the backend work done, but I'm having trouble converting the UoM on the front end when running a query.
    Here's what I did on the backend to set it up.
    1- I went to 0MATERIAL (BEx Explorer tab) and entered 0BASE_UOM as the Unit field. 
    2 - I then generated the conversion ODS.
    3 - I created transformation to the ODS using 0MAT_UNIT_ATTR.  I did have to use a master data lookup for the BASE_UOM field (using the values in 0MATERIAL) since the 0MAT_UNIT_ATTR didn't have the Base Unit of Measure, just the conversion one.
    4 - Loaded the ODS for 1 material (test material 1 EA = 1 EA and 1 KIT = 20 EA)
    5 - Defined a Converstion type (trans RSUOM).  I used Dynamic Option 3 (InfoObject, then T006 tables).  I set the Source UoM = DataRecord, and Target is set to "Selection during Conversion"
    Here's what I did on the query:
    1. For my key figure, I went to the conversions tab.  I selected my Conversion type.
    2. I created a user entry variable with a default value of "EA".
    When I run my report, I enter KITS on the selection screen, but the report still shows eaches.  I can navigate to the Currency conversion on the report via the menus, but I can't find anywhere for Units.
    Any ideas?
    Thanks,
    Rudy

    First, is there any particular reason why you used:
    Integer a = Integer.valueOf(1);while I used
    Integer a = 1; //boxing
    Just to get rid of boxing conversion as a possible issue--which it shouldn't be, but might as well keep it simple.
    Integer a = Integer.valueOf(1);
    Comparable<String> cs1 = a; // errorbecause we are assigning to a Comparable<String> an
    Integer value, and that's illegal, since String and
    Integer are not in a subtype relation (?)Something like that, yes. I'm not sure of the exact clause of the JLS that forbids it.
    >
    Comparable<Integer> ci = a; // ok
    Comparable<String> cs2 = ci; // errorbecause we are assigning to a Comparable<String> a
    Comparable<Integer>, and again, String and Integer
    are not in a subtype relation (?)Yep.
    Comparable<String> cs3 = c1; // warning
    Comparable<String> cs4 = c2; // warningit's what I believe is called 'heap pollution' I forget what that term means, and am too lazy to look it up, so I'll take your word for it.
    and I
    believe that on first use a ClassCastException will
    be thrown Sounds right. Run it and see for yourself.
    (although the compiler behaves correctly by
    flagging an unchecked warning, for compatibility with
    legacy systems, etc)Right.

  • Curency Conversion

    hi
    this is chandra.now i am working in repoting.my client asked report on currency conversion like"Multi currency,USD to INR and exchange rebate" if any one knows plz help me out immedeatly.
    thanX

    Hi,
    Have you given the target currency there into which you want the currency to be converted.
    Also check exchange rate for the to and from currency are maintained in the BW which you are inputting at the run time.
    Also check if the currency conversion type which you have created has any time characterictic as its reference and check if that time characteristic has any value in the cube for which you are running the report.
    Basically if the Conversion type is dependent upon time and if that time is not present in the records which are selected during run time then the key figure values will not get converted.
    Hope it helps
    Thanks

  • Query about ALE conversion rule

    Hi,
       I am trying to copy an ALE conversion rule from one system to another.
       In the rule, for one of the variables, the option 'Set Variable' is selected and a variable '&PRTMVxxxx' (Name changed)
       is set under 'Rule Type'.
       I was not aware of how this variable gets filled or what additional setting is required.
       Could someone help me out with this option under the conversion rules?
    Regards,
    Sudeep

    Hi Gaurav,
    I have exactly the same problem that you had back in late 2006, with the Conversion Rules somehow not passing the data to the IDOC segment.
    The IDOC segment is cleared of all values with the Conversion Rule active.
    I have managed to determine that the exit is working properly, at least to the point where it is finished in EXIT_SAPFKCIM_001, and SENDER_SET_NEW is filled correctly.
    Did you manage to figure out what was wrong?
    Does anyone else know how to get this working?
    Thanks,
    Bruno

  • Question about assignment conversion

    JLS Third Edition, chapter 5.2 on page 93 and Discussion (p. 94), states that:
    >
    It is a compile time error if a chain of conversions contains two parametrized types that are not in a subtype relation.
    And in the Discussion the following example is shown:
    Integer -> Comparable<Integer> -> Comparable -> Comparable<String>
    Which rocks, since Integer and String are not in a subtype relation. This is still possible because of support for legacy code (i.e. raw types).
    However I wrote the following dummy code:
    Integer a = 1;
              Comparable<Integer> ci = a;
              Comparable c = ci;
              Comparable<String> cs = c;expecting the compiler to 'trace' the chain of conversions and throw a compile-time error, but all it did was to produce an unchecked conversion warning when the value of the reference variable c is assigned to the reference variable cs.
    Isn't this in contrast with what stated by JLS?

    First, is there any particular reason why you used:
    Integer a = Integer.valueOf(1);while I used
    Integer a = 1; //boxing
    Just to get rid of boxing conversion as a possible issue--which it shouldn't be, but might as well keep it simple.
    Integer a = Integer.valueOf(1);
    Comparable<String> cs1 = a; // errorbecause we are assigning to a Comparable<String> an
    Integer value, and that's illegal, since String and
    Integer are not in a subtype relation (?)Something like that, yes. I'm not sure of the exact clause of the JLS that forbids it.
    >
    Comparable<Integer> ci = a; // ok
    Comparable<String> cs2 = ci; // errorbecause we are assigning to a Comparable<String> a
    Comparable<Integer>, and again, String and Integer
    are not in a subtype relation (?)Yep.
    Comparable<String> cs3 = c1; // warning
    Comparable<String> cs4 = c2; // warningit's what I believe is called 'heap pollution' I forget what that term means, and am too lazy to look it up, so I'll take your word for it.
    and I
    believe that on first use a ClassCastException will
    be thrown Sounds right. Run it and see for yourself.
    (although the compiler behaves correctly by
    flagging an unchecked warning, for compatibility with
    legacy systems, etc)Right.

  • Question about capture conversion

    Hi, relating to capture conversion and to the code below:
    public static void reverse(List<?> list) {
              rev(list);
         private static <X> void rev(List<X> l) {
         }Am I right in saying that the <X> (or whatever else for that matter), it's just giving a name to whatever type will be passed by the reverse method? The syntax looks strange since we are declaring a type in a void method, and since I'm an old fashioned Java 1.4 programmer I find a bit difficult to accept this new syntax; additionally
    the JLS is not terribly simple in defining capture conversion :)
    Message was edited by:
    mtedone

    First, is there any particular reason why you used:
    Integer a = Integer.valueOf(1);while I used
    Integer a = 1; //boxing
    Just to get rid of boxing conversion as a possible issue--which it shouldn't be, but might as well keep it simple.
    Integer a = Integer.valueOf(1);
    Comparable<String> cs1 = a; // errorbecause we are assigning to a Comparable<String> an
    Integer value, and that's illegal, since String and
    Integer are not in a subtype relation (?)Something like that, yes. I'm not sure of the exact clause of the JLS that forbids it.
    >
    Comparable<Integer> ci = a; // ok
    Comparable<String> cs2 = ci; // errorbecause we are assigning to a Comparable<String> a
    Comparable<Integer>, and again, String and Integer
    are not in a subtype relation (?)Yep.
    Comparable<String> cs3 = c1; // warning
    Comparable<String> cs4 = c2; // warningit's what I believe is called 'heap pollution' I forget what that term means, and am too lazy to look it up, so I'll take your word for it.
    and I
    believe that on first use a ClassCastException will
    be thrown Sounds right. Run it and see for yourself.
    (although the compiler behaves correctly by
    flagging an unchecked warning, for compatibility with
    legacy systems, etc)Right.

  • Question about unit conversion for BAPI_PO_CREATE1...

    Hello Experts,
    How do we bypass/supress the unit conversion in BAPI 'BAPI_PO_CREATE1'? Because what is happening
    right now is for example, I input in 88CV it will convert it to 'EA' as this is defined as the
    PO unit of measure. I want the 88 CV to be as it is.
    Also, I am manually populating the net price(net_price) with my own value as I do not want to get
    the net price from the info record. But it comes back as 0. I populate the 'X' fields as to let you know.

    This conversion takes place due to SPRO setting
    ask your functional people to do that
    goo SPRO->reference img->sap netweaveer->check units of measurement
    cheers
    s.janagar

  • Curency Conversion in PO

    HI
    Can any one help me in resolving the following issue.
    we are importing material from Singapore.while preparing PO we are giving currency as USD.how can we know for how much INR the PO is prepared in PO stage itself not at MIRO or MIGO stage.
    Example : PO Value is 100 USD now we want to how much is the conversion rate in INR at PO stage.
    Thanks & Regards
    Mahesh

    There's also a simple way , you create a PO with 100 USD,then try to change the currency in Header--> delivery tab - to INR,the system will automatically adjust the net price in the PO item,  with PO date as exch rate period ref, there you can see how much is gonna, then just leave the PO trx.

  • Table control About lowercase conversion uppercase ?

    Hi All.
    how can I do  that don't Process lowercase conversion uppercase font.
    Regards.

    Hi ly cao,
    There are 2 solutions for this problem. you can use any one of the following
    Goto the corresponding domain and check the check box called Lower case
    Go to SE51-> give program and screen name -->Element list -> select the check box called Upper/Lower case entry to the corresponding field
    Regards,
    Mahi

Maybe you are looking for

  • Urgent ( Report errors ...............................)

    Hi, after installing 9iAS R2 (9.0.2.0.0) on Sun Solaris 8 with all necessary patchs. i try to run the report demo form the url : http://9iashost:7778/repdemo/examples/Tools/runJSPIAS.html ( the Test a JSP Web Report ... link) i received 500 Internal

  • Security Monitor Events display incorrect time

    I have a time issue between a 4240 sensor (5.0) and Security Monitor (2.1). The events in the sensor are correct but 7 hours off in Security Monitor, even though the VMS server understands the correct time (knows there are events in the last hour) bu

  • Problem installing multi-disc software

    I've got a 15" Macbook Pro running Leopard (10.5.2) and Bootcamp with Windows XP. I use the windows partition primarily for PC games. Games that have a single disk (e.g., Half-Life) install and run just fine. I am having trouble installing games that

  • Concurrent Manger not startted after clone in apps 11i

    Hi All, After clone refresh concurrent managers are not started. The value of concurrent_queue_name, node_name is not correct in table fnd_concurrent_queues table. O/P of the queries SQL> SELECT trigger_name , status FROM user_triggers WHERE table_na

  • Is there a way to reinstall i-photo without any other software

    is there a way to reinstall i-photo without any other software