Currency Symbol display based on user locale

Hello All
I want to set the currency symbol in presentation such that for US user the metrics are in $ symbol and for UK user the metrics are in pound symbol .
Can anybody suggest me how to go for this setting
Thanks

Hi
I am facing the same problem which you have faced earlier
I want to set the currency symbol in presentation such that for US user the metrics are in $ symbol and for UK user the metrics are in Euro symbol .
Can you please help me in this
Thanks
pavan

Similar Messages

  • Currency Symbol displays correctly locally, but not when I deploy to server

    Hi have some number fields, where I set the control hint on the view to Currency format. When I run locally, everything displays properly: $1,234.56
    But when I deploy my application to our development server, the $ is coming up as a ¤1,234.56. This happens to all my currency fields, not matter what object is displaying it.
    I've seen one other post that talks about using a numberConverter tag everytime I display the values, but I'd prefer to stick with "best practice" of using the control hints. Especially since it works fine locally, I have to think this is some sort of server side setting that I am missing. Does anyone have any idea what might be happening here?

    The ¤ symbol is a "neutral" currency symbol, it is used if no locale can be determined (no matter if you are using control hints or converters). Try setting a default local to your application on the faces-config.xml file.
    <?xml version="1.0" encoding="windows-1252"?>
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
      <application>
        <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
        <locale-config>
          <default-locale>en</default-locale>
          <supported-locale>en</supported-locale>
        </locale-config>
      </application>
    </faces-config>Hope this helps.

  • Euro Currency Symbol Displayed?

    I am trying to show the Euro currency symbol in a calculated number field.
    I tried changing the locale to English (United Kingdeom - EURO). That still displays the british pound symbol.
    Any ideas?

    There is a UK Euro option in LiveCycle though. Our office does sell in Euros instead of GBP sometimes.
    But what is wierd is when I use Germany or france, to show less than one Euro, it is using a comma instead of a decimal point. That is not how it is shown in our business. For example we would do.
    5.32 but LiveCycle is showing it as 5,32
    frustrating. Even though in the display pattern I have $z,zz9.99

  • How to set number of Rows of a table to be displayed based on user action?

    Hi Experts,
    I am getting data into the table. But only 5 records are displayed default. I want it to be a user selection.
    If user wishes to see 10 records, then first 10 records should get displayed. If user selects 'n' records then 'n' records should get displayed..
    How to achieve this?
    Regards,
    Yugesh A.

    hi Yugesh ,
    1 create  a input field UI
    2 bind its value property  to a attribute
    3 suppose ca_check attribute ( type string ) under node cn_check is binded
    read this in ur doinit of the view
      DATA lo_nd_cn_check TYPE REF TO if_wd_context_node.
      DATA lo_el_cn_check TYPE REF TO if_wd_context_element.
      DATA ls_cn_check TYPE wd_this->element_cn_check.
      DATA lv_ca_check LIKE ls_cn_check-ca_check.
    * navigate from <CONTEXT> to <CN_CHECK> via lead selection
      lo_nd_cn_check = wd_context->get_child_node( name = wd_this->wdctx_cn_check ).
    * get element via lead selection
      lo_el_cn_check = lo_nd_cn_check->get_element(  ).
    * get single attribute
      lo_el_cn_check->get_attribute(
        EXPORTING
          name =  `CA_CHECK`
        IMPORTING
          value = lv_ca_check ).
    4 nw for  ur table , make a another context attribute of type either string or I , say attr1
    bind its visiblerowcount property of table to attr1
    5 make a attribute in ATTRIBUTES tab of type string , say attribute
    set its value to lv_ca_check in doinit itself
    wd_this->attribute = lv_ca_Check
    6 nw in the method , where u need to validate how m,any rows user enter or doinit itself , set attr1 to the value of that attribute created under ATTRIBUTES tab ( named attribute)
    DATA : lv_count type string .
    lv_count = wd_this->attribute
    7 nw its very simple , set attr1 to lv_count , as it contains the count of the number which has entered in the input field
    DATA lo_nd_cn_check TYPE REF TO if_wd_context_node.
      DATA lo_el_cn_check TYPE REF TO if_wd_context_element.
      DATA ls_cn_check TYPE wd_this->element_cn_check.
      DATA attr1 LIKE ls_cn_check-ca_check.
    * navigate from <CONTEXT> to <CN_CHECK> via lead selection
      lo_nd_cn_check = wd_context->get_child_node( name = wd_this->wdctx_cn_check ).
    * get element via lead selection
      lo_el_cn_check = lo_nd_cn_check->get_element(  ).
    * set single attribute
      lo_el_cn_check->set_attribute(
        EXPORTING
          name =  `attr1`
          value = lv_count ).
    I hope it shud help
    proceed like these , u wud be able to achieve the desired functionality
    regards,
    amit
    Edited by: amit saini on Oct 20, 2009 1:12 PM

  • Adobe Form field display based on user

    Dear Friends
       I am creating one form. which has the three fields :
       1) Telephone:
       2) Email:
       3) Portal Id:
       My work scenario is when form reaches via workflow to Telefone person he / she only can enter data in the telephone field where he / she cant enter data in email and portal id field and this for all the fields like email guy has access to enter data only in  email and portal will be for portal id,  except concern person's field all other fields become read only.
    I have design the form and successfully trigger it via UWL as well. but all the field are allow to enter data as i dont know how to controll them. I have the role in my bsp's controller do_init method but dont know how to utilize this info to set as read-only for non concern users.
    Is ther any way to achieve this please tell me how I can achieve this functionality. your any help will be appreciated.
    Thanking you
    Regards
    Naeem

    Dear Chintan
       Thank you very much for your reply.. i incorporated your solution in following wat
    ---------data.#subform[0].TextField3::ready:form - (FormCalc, Client)-------------------------------
      <---- this is the line two and column 1
    if(ROLE1 == "TEL")               //form1.page1 - indicates you form hierarchy so change it accordingly.
        form1.page1.phone.access = "open";
        form1.page1.email.access = "readOnly";
        form1.page1.portal.access = "readOnly";
    else if (ROLE1 == "EMAIL")
        form1.page1.phone.access = "readOnly";
        form1.page1.email.access = "open";
        form1.page1.portal.access = "readOnly";
    else if(ROLE1 == "PORTAL")
        form1.page1.phone.access = "readOnly";
        form1.page1.email.access = "readOnly";
        form1.page1.portal.access = "open";
    I am receiving the following error at line 2 and column 1
    " Script Failed ( language is FormClac;contex is xfa[0].form[0].data[0].#subform3[0].textField3)
    Error syntax error near token '{' on line 2 column 1. could you please tell me where i m making mistake.
    I am not using the sub-form.
    for your information what I am doing is:
    I have 7 input fields:
    Form receives the values for the following fields from the BSP Page controller (do_request).
    field 1 pernr ( read only)
    field 2 emp_name (read only)
    field 7 role1 (invisible)
    by this function module
    call function l_name
        exporting
          /1bcdwb/docparams  = fp_docparams
          pernr = emp_id
          emp_name = emp_name
          role1 = role1
        importing
          /1bcdwb/formoutput = fp_result
        exceptions
    Form fields which properties need to be set on role
    Field3 Telephone
    Field4 Mobile (same as telephone and optional so not important)
    Field5 Email
    Field6 Portal
    I have use the code on the above 4 fields.
    Please help me to rectify the error I ll greatly appreciate your reply.
    Thanking you
    Regards
    Naeem
    Edited by: Naim Khan S Babi on Oct 8, 2009 4:13 PM

  • Currency Symbol Problem on Unix

    I am having a problem with the Currency Symbol display on a Unix Environment. The java code was done on a NT environment and was displaying correctly with the "$" symbol preceding the number. However when I moved this to the unix environment, instead of the "$" symbol I now instead get "�" this symbol in its place. Below are some parts of the code to illustrate. I am new to java so I can't figure out why the currency symbol wont display. Any suggestions?
    import java.text.NumberFormat;
    snip
    NumberFormat nfc = NumberFormat.getCurrencyInstance();
    snip
    nfc.format(dollarAmt);

    Please verify the Locale.
    System.out.println("locale=" + Locale.getDefault())

  • Remove currency symbol in a report

    Hi
    Can anyone tell me how to remove the currency symbol from a report e.g. an invoice.
    Regards,
    Henrik Fladkjæ

    Hello Henrik,
    You can use the Database textfield other than the System Variable field to avoid the Currency symbol displayed in the report.  Hope this will help.

  • Display Currency Symbol disabled, but symbol prints if currency in a text formula.  Why?

    Our Crystal Report displays money fields (from our SQL database).
    Our Crystal Reports Designer has the Display Currency Symbol feature disabled by default when writing reports.
    On one report we have a Sell_Amount currency field to display:
    We have this Sell_Amount field directly on the report in one section.
    We also have this Sell_Amount field in a formula for printing in a different section.  This formula is defined as a text field as it will either display 'No Charge' or the Sell_Amount based on a condition, such as:  If {NoCharge} Then 'No Charge' Else ToText(Sell_Amount)
    When viewing this report on our development machine in Crystal Designer, the Currency Symbol does not show for either the Sell_Amount field that is directly on the report or for the Sell_Amount that is in the formula (I am guessing because we have the Display Currency Symbol disabled).
    When viewing on a runtime machine (no Designer, just runtime components), the formula (if NoCharge = False) displays the Sell_Amount (in the formula) WITH the currency symbol, but the Sell_Amount that is directly on the report (not in the formula) does not display the currency symbol.  Why?
    This has been an issue ever since were were on Crystal 8 way back when.  We have never found (nor asked) for a reason, but now we need to know the reason/rules, etc. for this.  We are currently on Crystal 2008 SP6 (Designer) and deploying Crystal Reports Developer for Microsoft Visual Studio SP6 runtime components.  As I said, this has been an issue for years, but we now need an explanation.  I have not been able to locate one on the site anywhere.  Can you please explain the rules of Currency Symbol in this scenario?
    Thank you.

    Hi NB,
    I did say to use the Advanced editor but I did not say to use it for attaching the report...
    So to be clear here is what I see in the report Designer ( I put the formula into text boxes also ):
    For the NoDatabaseCurrency field you have to set the currency to Fixed, Floating will add a space:
    Which is opposite of what you originally posted:
    "...Our Crystal Reports Designer has the Display Currency Symbol feature disabled by default..."
    It's not disabled by default, please explain?
    As for using the CCUR() function the help file does show the Currency symbol is on by default:
    Examples
    The following examples are applicable to both Basic and Crystal syntax:
    CCur (200.20)
    In Crystal syntax this is equivalent to writing $200.20. In Basic syntax, CCur (200.20) is the way to directly create a Currency value of 200.20.
    CCur ("$200.20")
    Returns the Currency value CCur (200.20) given the String value "$200.20".
    CCur ("two hundred dollars")
    Causes an error to occur. The CCur function cannot convert the String "two hundred dollars" to a Currency value.
    So if you mean you went into the Options menu and Fields, Currency and check off this option:
    [Update] - After testing this a few times it does retain the Options, current, Display Currency Symbol, so creating a new report the option is unchecked.
    You are correct, even though I checked it off when I create a new report the option is checked on and obviously it's still on for each field and object. This may be a bug, testing more and checking with a few more people and eventually R&D.
    So please clarify the steps you are doing?
    Make sure you are running CR Designer under local PC Admin rights, right click on the short cut and select run as Administrator or check this option on:
    Thanks
    Don

  • Currency symbol not displayed

    Hi All,
    I am using crystalreports-javasdk-11.8.8 for generating Crystal Reports in java. We don't have any issue in generating reports but the generated reports contain doesn't contain the Currency symbol.
    I have set the locale using below code.
    reportClientDocument = new ReportClientDocument();
                reportClientDocument.setLocale(Locale.getDefault());
                reportClientDocument.open(reportFilePath, 0);
    In the Report, the Numberic Format is System Default.
    Currency Symbol is $
    Questions:
    1. Why Currency symbol is not dispalyed?
    2. I have missed any configuration?
    3. How the currency symbol is set based on the Locale?
    Details:
    Sql Server 2005 used. Database feild is Money.
    Thanks for your reply in advance.
    Edited by: arun4.d on Dec 19, 2011 6:27 AM

    try with newer set of Jars from [here|http://downloads.businessobjects.com/akdlm/crystalreportsforeclipse/2_0/crjava-runtime_12.2.213.zip]

  • Currency Symbol (�) not displaying

    Hi,
    I'm using PostgreSQL as my DB and the pg73jdbc3.jar driver to connect to my DB. I'm trying to display the pound sterling currency symbol (�) in my JTable but it will not display, it puts in a square instead. However, it will display the U.S. dollar symbol ($). The locale settings on the PostgreSQL server are set to en_GB.
    What do I need to do to get the � symbol to display in my JTable.
    Kind Regards,
    Chris

    This has to do with JDBC and databases because I am querying a postgresql database (version 7.3.2) and the .getString() value from the resultset is giving me a square symbol rather than the pound sterling symbol.
    I've tried modifying the font, the locale settings, and the character set used by the JDBC driver but neither of these have worked.
    Anyone got any suggestions?
    Kind Regards,
    Chris

  • Questioning currency symbol LEI rather than RON for ro_RO locale (Romania)

    Using java jdk 1.6.0_16 to compile my code in Eclipse. I have code that handles the display of currency values using Locale class in java. When using language = "ro" and country = "RO" for Romania, the currency symbol is LEI when I believe it should be RON, at least that is what a client in Romania is telling me.
    Any suggestions on what I could possibly do to make RON the currency symbol or explain to the client why LEI is being used?
    Edited by: ooper on Nov 18, 2009 2:41 PM

    It's always nice to have sample code which displays the problem. So is this code okay?
    Locale ro = new Locale("ro", "RO");
    NumberFormat nf = NumberFormat.getCurrencyInstance(ro);
    System.out.println(nf.format(13000));So when I compile that as Java 6 and run it under a Sun Java 6 JRE, I get this output at the console:
    13.000,00 LEIBut when I compile it as Java 5 and run it under an IBM Java 5 JRE, I get this:
    13.000,00 RONI don't have a Sun Java 5 JRE to test with. However when I use this code:
    Locale ro = new Locale("ro", "RO");
    Currency c = Currency.getInstance(ro);
    System.out.println(c.getSymbol());
    System.out.println(c.getSymbol(ro));then under the Sun Java 6 JRE I get this:
    RON
    LEIand under the IBM Java 5 JRE I get this:
    RON
    RONYes, I agree with your informant that "LEI" is obsolete and "RON" is the correct abbreviation for the currency today, and I have no explanation for why Sun has things coded that way, but perhaps that helps you with a workaround?

  • Displaying one currency symbol per page on groups

    I have a report that displays data at grouped levels only.  I need to display the currency symbol only once per page on certain fields.  While this works on the detail section, it's not working on the group header/footer sections.  Does any one know how to limit the currency symbol to one per page on a grouped field?  Thanks.

    Hoperfully this will make my problem a little more clear:
    My report groups on FIELD_A and sums $FIELD_B at the group level.  The report displays Group Footer 1 which contains the group name FIELD_A and the sum of $FIELD_B.  The user can drill down on the FIELD_A group  to see the detail.  I only want the currency symbol for the sum of $FIELD_B to be displayed once on each page - on the first line of each page.  When I format the sum of $FIELD_B field at the FIELD_A group level, the "display currency symbol once per page" option does not work.  I could use a conditional statement to set the currency symbol for the sum of $FIELD_B but I'm don't know how to determine if the sum of $FIELD_B is the first instance of the field on a page.
         GROUP FOOTER1     GROUP FIELD_A     SUM($FIELD_B)
         DETAIL          FIELD_A          $FIELD_B
    Edited by: Susan Scott on Jul 29, 2008 2:37 PM
    Edited by: Susan Scott on Jul 29, 2008 3:51 PM

  • 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

  • Insert new rows based on user selection on a table display on the screen

    Hi..
    In my requirement i need to display the line items of a PO# to the user on the screen for specific fields. Each row should also include an additonal checkbox when displayed for the user. When the user checks this check box or clicks on it a new row should be inserted below to that row with the existing data of that row being copied to newly inserted row and allowing the user to make any changes.
    The newly inserted row should also include a check box , so that when the user checks it again a new row should get inserted. Finally what ever data user enters on the screen, i should be able to update my internal table with those new values and records.
    Appreciate if anyone can guide me on how to proceed on this or any alternative approaches.
    Will reward helpful answers.
    Thanks.

    Hi ..
    Can you please be more detailed. First I need to know how to create the initial table display for the existing line items and then the techniques for inserting the new rows based on the check marks and finally add those news rows to my existing internal table..
    Appreciate ur help.
    Thanks.

  • Any SAP standard approach to display the currency symbols without hard code?

    Hi,
    I want to display $ symbol on the report ouput, for the how can we display currency symbols without hard code?
    Thanks,
    Aarti

    Not much chance... If such a standard table exists, then during Euro creation, an OSS note would have been released to add the € character, and I found none, fell free to perform some search on OSS with keywords I didn't try.
    So better build your own customer table with foreign relaction to TCURC.
    NB: Look for symbol list ($, £, €, ¥, etc.) in sites like Currency symbol - Wikipedia, the free encyclopedia. I hope your system is Unicode.
    Regards,
    Raymond

Maybe you are looking for

  • Download assistant is not working?

    I have tried several times to download the asistant tool and nothing happens.  What should I do?

  • Flash video screenshot before play

    I have some flash videos (.flv) that just display a black screen until the person presses play, how can I have it show a still image of the actual video or define an image to be displayed before the person presses play? Thanks in advance.

  • Simple lines now not compiling

    I added the Netbeans profiler to my app this morning. I don't know if that has anything to do with my problem specifically, but for some reason, simple lines that I add in are acting very weird now. For instance, the below line asks for another " )".

  • Limiting table title width

    Is it possible to set the width for a table title? For example, I have a 30 pica wide text column and I want to insert a table with a title below. (The table is actually going to have an anchored frame inserted that will contain a graphic.)Anyway, I

  • DACF: GridControl and formatted Date

    Hello, In JDev 3.2.2 (915), GridControl cannot paint formatted Date of null value: EmpImpl.getHiredate() = 1981-12-03 EmpImpl.getHiredate() = null Exception occurred during event dispatching: java.lang.NullPointerException void javax.swing.JComponent