Currency symbol in front of value

In the Lead screen - for Potential Volume (currency type), in our case we enter the value (f.e 5000) and it is shown as 5000 R$, meaning our currency symbol...after the value.
Would it be possible to change this format...and show the currency symbol in front of the value ? like: R$ 5000
Txs. for any help.
Antonio

Hi,
You can try inserting formula and apply Substring formula.
What is your Currency is it 3 letters like (PHP, USD)?
Then try
Substring(F_XXX,0,3) - for 3 letters currency
Substring(F_XXX,0,2) - for 2 letters currency
Thanks.
Clint

Similar Messages

  • 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

  • Changing Currency Symbol from the Menu bar to other than €

    I use the Costa Rican colon symbol ¢ (in front of number) as a routine value, as well as the U.S. dollar symbol and it seems cumbersome to select the "Inspector" to make these alternate currency symbols (or any alternate to € symbol). Speaking of the Costa Rican colon, it is represented incorrectly anyway and I don't know how to change the symbol.
    Also, in the pop-up menu of the "Inspector -- currency" all currency symbols show as € and only when a cell is clicked after selecting a currency symbol, does it appear in the cell (not correct, but at least something other than €.
    This is my first hour of "playing with" Numbers. I hope it's not a sign of things to come.

    There are many variations to the symbols used for currency worldwide, please, if yours is wrong let Apple know. The feedback option is under Numbers on the menu bar. This is a user to user forum provided by Apple, not run by them.
    My symbol on the menu bar is $, which is correct and rather common worldwide, maybe a generic currency symbol is used for smaller areas of the world. I know I have the Australian flag rather than a New Zealand one on my menu bar for the international settings. We are obviously too small to have our own
    You can show all currency options in the inspector by changing the Numbers preferences. A quick way of selecting the correct currency in the inspector is to open the list and type the first few letters.
    I'd expect your default would be the same as you have set in the System Preferences > International.
    You could also make a couple of templates for yourself in both currencies and use them instead.
    Numbers is a neat piece of software, keep playing with it and you may well get to like it.

  • 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.

  • How  can i print currency symbol in smart form?

    how  can i print currency symbol in smart form?
    i want to print the currency symbol with grant total based on the vendor currency.
    pls hepl............

    Hi,
    think You can't print the symbols for currency like $ and Pound etc
    see this doc if needed
    A variable in SAPscript is called a symbol. There are the following types.
    • System symbol (e.g. the number of the current page)
    • Standard symbol (usable in any document)
    • Program symbol (value from the print program)
    • Text symbol (“local variable”)
    The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.
    goto any PAGEWINDOW's Text elements in Script (SE71)
    from the Menu-> INSERT-> Symbols
    you find all symbols here
    System symbols
    System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.
    1. General system symbols
    See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.
    2. SAPscript system symbols
    See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.
    3. ABAP system symbols
    For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. http://SYST is the dictionary structure for ABAP system fields.
    Sample code:
    User: &SYST-UNAME&
    Page &PAGE& of &SAPSCRIPT-FORMPAGES(C3)&
    Standard symbols
    Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:
    Tools
    Form Printout
    Administration
    Settings
    Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.
    The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.
    We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.
    Standard symbols complicate searching a SAPscript form, since text like ‘Charity registration 211581’ may be hiding in a standard symbol.
    Text symbols
    A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.
    /: DEFINE &COMP_NAME& = ‘University of Warwick’
    /: DEFINE &WS_RATE& = &TAX_SUMM_C&
    Reward points for useful Answers
    Regards
    Shiva Kumar

  • Problem with Currency Symbol in IR export to CVS

    I have a number of queries that have been successfully generating csv files for years and have been adapted to provide the basis for the same information to be available as an interactive report with the option to download as csv. The old scripts set the NLS settings at the outset. The Apex app sets the NLS environment in the vpd function. The apex report query is a "select * from some_view" style one that ultimately queries a remote view with several columns like this:
    select TRIM (LEADING ' ' FROM TO_CHAR(ROUND(100,2),'L9999G999G990D00')) x from dual;
    just as the were in the prior manual SQL.
    The "new" apex export to csv files contain an extra character preceding the currency symbol that is upsetting Excel on import.
    old-style hexdumps look like this:
    2c 22 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    new ones like this:
    2c 22 c2 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    Where on earth is Apex getting it into its head to add this (the on-screen report is fine!) and how can I stop it?
    Thanks in anticipation.

    hi,
    this is a normal problem u can avoid this by moveing these currencu value to a character field then print the char field us ing condece... &var(C)&..
    eve if not solve the problem use the TEMPLATE node..
    Please Close this thread.. when u r problem is solved. Reward all Helpful answers
    Regards
    Naresh Reddy K

  • Currency symbol in email notification

    Hi all-
    I need to display the currency symbol in the outlook email notification sent by workflow. If the country is US, then it should show dollar sign ($) infront of the amount (like: $ 100)
    I can display it for US, but while displaying it for Europe, i am having problem in diplaying the currency symbol. Please provide your inputs.
    Vinoth

    Hi,
    unless you change it to HTML I don't think you can do this.
    There is an SAP note about this "feature"
    Maybe they fixed it now, I don't know, so just search OSS on how to solve your problem.
    Usually I just use the currency key, USD, or EUR to display values
    Kind regards, Rob Dielemans

  • 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

  • Different currency symbols in report

    Hi All!
    Can anybody show me how to create international reports. I need to show different currency symbols in the same report but for different clients.
    I try to use set_nls function, but no luck.
    Any suggestions will be appreciated!
    It's urgent.
    Mike

    hi2guru wrote:
    > Do u want to display the values in particular currencies?
    Hi,
    I want to have for each row the local currencies and specific rows corporate currency.
    For example (1111 (this is the company code)) and 0010 (this is the corporate currency):
    1111  1000,00USD
    2222  2000,00JPY
    3333  3000,00RMB
    0010 1234,00Euro (1234,00 as example conversion in corporate currency)
    So I have rows with local currency which are transfered all into the BW and displayed in the report.
    And I need particular rows where the conversion should be displayed.
    I know the transaction RSCUR but don´t know how to handle the different currency appearance in the report.

  • Currency Symbol (£) Appearing As Question Mark

    Does instant client support currency symbols other than the dollar?
    On machines running the full client our application works fine. On machines using 10.2.0.2 instant client (have also tried using 10.1 IC) pound signs are appearing as ? Have spent a lot of time trying to get around this without any luck. On login the session is being altered to use UK territory and currency is being set to £ as a backup, but still it refuses to work.
    Looking at v$nls_parameters on the machines show the same thing - territory set correctly, but currency and dual currency are questionmarks.
    Both the thin and full client show the same characterset and nchar, just the currency is incorrect on the IC machines.
    Any ideas / help appreciated.

    Are you using the normal Instant Client or 'Instant Client Light' (e.g., assuming you use Linux, did you download instantclient-basic-linux32-10.2.0.2-20060331.zip or instantclient-basiclite-linux32-10.2.0.2-20060331.zip?
    Instant Client Light will only support the following:
    * Language: US English
    * Territory: Any territory that is supported by Oracle
    * Character sets:
    o Single byte
    + US7ASCII
    + WE8DEC
    o Unicode
    + UTF8
    + AL16UTF16
    + AL32UTF8
    (see http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b15662/pre_install.htm#sthref106).
    If this is not your problem, then maybe you have a wrong setting somewhere.
    Let me clarify some things:
    o You retrieve a character column that contains the £ character, right?
    Then NLS_TERRITORY and NLS_LANGUAGE are irrelevant, they only have an
    impact on display formats for numbers and messages and the like.
    o When you say 'both installations show the same character set', do you mean
    that 'SELECT VALUE FROM NLS_DATABASE_PARAMETERS WHERE
    PARAMETER='NLS_CHARACTERSET' returns the same result in both cases?
    That would mean nothing, as this is the database character set and NOT the
    client character set.
    The setting that determines the client character set is the character set portion of the environment variable NLS_LANG.
    To find out what is your problem, please investigate the following:
    o Are you using Instant Client Light?
    o What are the character set and national character set of the database?
    o What is the value of the environment variable NLS_LANG on both client machines?
    (If the full client installation is on Windows, also check the value in the Windows
    registry).
    Yours,
    Laurenz Albe

  • Currency symbol printing

    Hi experts,
    In scripts, i need to print currency symbol with amount.  How it can be done ?
    EX : $1100.  - US dollar.
    Please help me to do .
    Thanks.

    Hi
    I think You can't print the symbols for currency like $ and Pound etc
    see this doc if needed
    A variable in SAPscript is called a symbol. There are the following types.
    • System symbol (e.g. the number of the current page)
    • Standard symbol (usable in any document)
    • Program symbol (value from the print program)
    • Text symbol (“local variable”)
    The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.
    goto any PAGEWINDOW's Text elements in Script (SE71)
    from the Menu-> INSERT-> Symbols
    you find all symbols here
    System symbols
    System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.
    1. General system symbols
    See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.
    2. SAPscript system symbols
    See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.
    3. ABAP system symbols
    For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. [SYST is the dictionary structure for ABAP system fields.]
    Sample code:
    User: &SYST-UNAME&
    Page &PAGE& of &SAPSCRIPT-FORMPAGES(C3)&
    Standard symbols
    Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:
    Tools
    Form Printout
    Administration
    Settings
    Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.
    The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.
    We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.
    Standard symbols complicate searching a SAPscript form, since text like ‘Charity registration 211581’ may be hiding in a standard symbol.
    Text symbols
    A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.
    /: DEFINE &COMP_NAME& = ‘University of Warwick’
    /: DEFINE &WS_RATE& = &TAX_SUMM_C&
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • £ currency symbol preceded by 'A'

    Each time I include a £ currency symbol in iWeb and upload to my site the online version shows a 'A" (with a hat on) symbol in front of the £. Probably a simple answer to this but I can't find it. I have no problems with $ but unfortunately £ is my currency. Any suggestions gratefully received

    Normally that means that your server is misconfigured. See the server settings section of this note:
    http://homepage.mac.com/thgewecke/iwebchars.html
    Provide your url for confirmation.

  • Currency symbol only for grand total.

    Hi,
    My requirement is i want currency symbol $ only for grand total, all the rows in that column do not have the symbol.
    I need some your help.
    Thank you.

    Although I couldn't understand why you dont want currency format in rows, here is my suggestion.
    Create your report as
    1 dim1.column1 dim2.column2 Measure.Revenue ......... You will get values as below
    1 Value1 Dim2Val1 100
    1 Value2 Dim2Val2 200
    1 Value2 Dim2Val3 300
    UNION
    2 'Grand Total' ' ' Measure.Revenue
    Final result will be as below
    1 Value1 Dim2Val1 100
    1 Value2 Dim2Val2 200
    1 Value2 Dim2Val3 300
    2 Grand Total 600
    Now apply conditional formatting for dim1.column1 in criteria and make the values Bold
    Apply conditional formatting for Measure.Revenue and select Currency in number format.
    Let me know if it was helpful or you were looking for something else.
    Thanks

  • 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

  • Adding currency Symbol using formatNumber

    Hello,
    I want to display currency symbol along with the number in JSP. I tried the following two tags, but the currency symbol ( USD) is not displayed.
    <td> <fmt:formatNumber value="${row.col1}" type="currency" pattern="###,###"/></td>
    <td> <fmt:formatNumber value="${row.col1}" type="currency" pattern="###,###0"/></td>
    Can you please help

    I think if you specify a custom pattern the currency doesn't get formatted.
    Either try :
    <fmt:formatNumber value="${row.col1}" type="currency" />
    or
    <fmt:formatNumber value="${row.col1}" pattern="$###,###"/>

Maybe you are looking for