Currency symbol

I´m working with several numeric fields that are suposedto be holding amounts of money [actually Euros].
Although my display pattern is set to $Z,ZZ9.99 i can't get the PDF produced afterwards to show any currency symbol. (I've also tried with 9.999,99'', just in case).
I´ve looking for workarrounds to this issue but cannot come up with any.
Anyone having the same problem?
Thanks in advance
BTW: My input locale is set to SPANISH(Spain) so those fields should be displaying a nice .

Thanks jimmypham,
However I´ve been tring with ''9999.99 and couldn´t get numbers to show up correctly when they were longer than four figures, let´s say 1.500.000.
So I finnaly chose to use something like this ''ZZZZZZ9.zz. The only problem now is that it wont separate my numbers in thousands or so.
I guess this is a local machine problem and I´ll have to stick to this.
Thanks anyway for your help

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

  • How to print currency symbol in SAPScript

    Hi,
    How to print different currency symbol in SAP?
    The requirement is that the SAPScript should print the currency symbol along with the currency code.
    i.e. USD ($)
    The currency can be any foreign currency.
    Is there any table where i can get currency symbol or is there any way i can print this. I am working in 4.6C.
    Please help.
    Thanks,
    Pratik

    Hii
    When the user has to insert a particular symbol, from menu:
    Insert->Character->Displayble Characters:
    Here in the input field insert <156> and then press enter

  • Currency symbol in report

    Hi,
    Please let me know if there is any FM to convert USD to $ and also other country currency symbols. let me know if there are any standard tables in sap which are related to this.
    regards,
    Lakshmikanth.T.V

    Hi Venkat,
    Check out this threads for further info.
    Re: Table that keeps currency symbols like US $ etc... - Very urgent
    currency symbols
    As SAP doesn't maintain any such table, you need to hardcore it in the program or create a ztable for maintaining the known currencies by looking at TCURC.
    Regards,
    Vivek
    PS: Award points if helpful

  • 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

  • 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

  • Currency Symbol for each amount

    Hello People,
    I have to include currency symbol infront of each amount in my web dynpro application display.
    Example, there is an amount in USD, currency symbol for USD must be published there and
    if there is an amount in EUR, currency symbol for EUR must be published there and so on...
    Can someone help to know me how can I do that?
    Thanks,
    Megha

    Hi Megha,
    If you are going to store the symbols as graphic/icons  I would store them in the mimes folder and then reference the the mime name in your custom table. So two fields in your table, currency and mime name.
    I think you might find that if using a Unicode system that you can just type the symbol into the table - e.g. $ £ ₧ u20AC rather than having to use any graphics. I suppose it depends on how many symbols you need.
    Again - I'm not aware of anything SAP standard that does this.
    Good luck,
    Chris

  • Page 1 missing Currency Symbol

    Hello Guys,
    I have a financial report, and I need to show currency symbol once on every page (first line on every page).
    I go to the Number tab on the field format, click Customize, then select the "Currency Symbol" tab and check 2 options - "Enable Currency Symbol" & "One Symbol per page". When I ran the report, the currency symbol appears on every page but NOT on the first page.
    What can I do to fix this issue?
    Thank you,
    Tanya.

    I need to add that the amounts are Summary fields in the Group section.
    When I tried to use the same currency logic : "Enable Currency Symbol" & "One Symbol per page" on the Detail level - I got the first page with Currency and all other pages without currency symbol.

  • Crystal Reports Currency Symbol Problems

    Hi
    I have a report that displays a currency field. I have formatted this field to display a custom currency symbol ( 'R' in my case). The report runs fine on my machine but as soon as upload it to our server the currency sysmbol changes to '$'.
    What am i doing wrong?

    Hi ,
    We didn't solve this yet. İt is so important for us.
    We have run on WMVare windows 7 sql server 2008, visula sd 2010 framework 4.0 crytal report viewer 13.7.
    Until now it run on std server and our local it is not problem. But now we are run on WMVare it doesn't show true sysbol.

  • Removing Currency Symbol in PLD & Dot Matrix printer issue

    Hi All
    I need to know if its possible to remove the currency sysmbol on your print out. I'm printing on a pre-printed stationery and the currency symbol makes the lines to overlap.
    Aonther question is , which font format can you select to for printing when you are using dot matrix printer (OKI Microline 3321 9 Pin Printer)
    When its printing it's printing in bold and on the invoice after the second one , it looses the margin setting and prints on the wrong fields.
    Thanks.
    Bongani
    ( South Africa)

    I tested the Amount function and it works perfectly for your need.
    Add a formula field and in the Content Tab insert the Formula as
    Amount(Field_198)
    Here the Field_198 is shown as an example but you will enter the Field number of the amount field which currectly shows with the currency in your PLD.
    For each such amount field you will need a Formula field to remove the currency symbol.

  • € Euro Currency symbol in ActiveSync password not working.

    Are there any known issues when using the € Euro Currency symbol as a password for ActiveSync on an iOS device? It appears ActiveSync does not accept the  € Euro Currency symbol when used in a password sent from an iPad/iPhone.
    Are there any known issues with special characters and ActiveSync?
    Thanks for your help.
    Regards,
    Dennis

    ActiveSync was developed for Windows.  You'd have to know what code page the Windows device was using to make sure you understood how the character should be coded.
    Generally speaking, I wouldn't use any character in a password that didn't have an ASCII code.  We've even had trouble with accented characters.

  • Indian Currency Symbol in PLD

    Iam using SAP 8.8 PL 13. I have downloaded the Indian rupee font and updated the same in System Initialisation->General Setting-> Fonts. Also under setup->Finance->Currency, I have mapped the new Indian currency along with its symbol/code. In my transactions i can see the currency symbol along with the price, but in the PLD I cannot. Foreign currency symbols like Dollar and Pound are visible both at the transactiona level as well as PLD. How to map the new Indian currency symbol in PLD?
    Rgds
    Kalli

    Hi..
    I think you might have taken Variable Field on PLD & try to take Database Field it will show you RS. Currency Symbol
    Regards,
    Bhavank

  • Currency Symbol in Project Server 2007

    Hi,
    Is it possible to change the currency symbol resource wise in Project Server 2007?
    I need a resource rate to be in INR and another resource rate should be in GBP.
    K.Gokulraj

    Yes you're correct. All enterprise resources on server's project will have the currency defined in the server settings.
    Actually the options doesn't mean that more than 1 currency can be used in the projects, but that projects can be published with another currency than the one defined in the PWA server settings. Note also that you'll be warned (see screenshot below) of enterprise
    projects with a different currency due to the fact that it can cause redition issues.
    I'd suggest to convert the non-standard rate into the enterprise currency. You might add a resource custom to give the information on the resource native currency.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Currency symbol in Applications

    Hi All,
    I am using Jdeveloper 10.1.3.3, i want to display Egypt currency symbol in amount fields in my application. what should i do for the same?
    what is the entry should be in my property file?
    Thanks in advance
    Regards
    GG

    if i give \u5143 it gives boxes, but i want to print
    currency symbol,Are you sure that the correct fonts are available for the browser to display the symbol?
    Are you sure that you have the correct code? According to unicode.org character 5143 is a unified Han ideograph and is found within this document: http://www.unicode.org/charts/PDF/U4E00.pdf .

Maybe you are looking for