Currency signs

This may be a stupid question, but does anyone know how to make a currency sign visible in forms and documents rather than the type.
e.g. I would like to display £ not GBP
Many thanks
Dom

Create a new currency code "₤" setup in Administration >setup>Financials-->Currencies
Jeyakanthan

Similar Messages

  • How to change currency sign in report

    How can I change the currency sign in report like from dollar to pound sign. Any help and advice will be highly appreciated.

    Sherry,
    I'm stumbling my way thru the same question. we need to print the currency symbol based on the country defined in the data. here's the not-so-short answer:
    we're looking into storing the currency symbol as a unicode value (NVARCHAR2 field) in the database by country and linking it to the data selected in the report. I have a select statement in the report sql that retrieves the correct unicode value per data row. the question then seems to become: do i want to display the field as a number with a format mask, or convert the whole thing to a string/char value?
    Keeping everything as a number, in the report format field Format Trigger, i create a mask for each field and call a function to do the following:
    v_format := q'{(}' || q'{"}' || p_currency || q'{"}' || v_format || q'{)}';
    this gives you a mask with the parenthesis for negative numbers, the currency as literal string, and the v_format (NN,NNN,NNN,NNN,NN0.00) for currency amounts. we vary the # of decimal places and pass that value into the function (just to make things complicated.)
    the 'uber complex' version of the function converts the number field to a string/char value. this allows you to change the decimal and separator values for an individual data row. we have not decided to implement this, but it works. you have to enter a 'bogus' character field in the report format and use srw.set_field to change the value at runtime. this keeps the value as a number in the sql for math, but a char to display. complicated. the function does this...
              v_format := '999G999G999G990';
              v_decimalplaces := MOD((p_decimalplaces * 10),10);
              IF v_decimalplaces > 0 THEN
                             v_format := v_format || 'D';
                   FOR i in 1..v_decimalplaces LOOP
                   v_format := v_format || '9';
                   END LOOP;
              END IF;
              CASE WHEN SIGN(p_value) >= 0
                   THEN
                        v_format := p_currency || TO_CHAR(p_value, v_format, 'NLS_NUMERIC_CHARACTERS = '',.'' ');
                        ELSE
                        v_format := '(' || p_currency || TO_CHAR(ABS(p_value), v_format, 'NLS_NUMERIC_CHARACTERS = '',.'' ') || ')';
                   END CASE;
    we would pass the values of NLS_NUMERIC_CHARACTERS to the function.
    the last 'hitch' is that not every UNICODE currency symbol displays properly. the euro (hex 20AC) is fine, but the korean won (hex 20A9) is not. the database character set is AL32UTF8, and the sql works fine in sql_developer. however, reports does not reliably display the symbol. i have a TAR into oracle at the moment, hoping for clarification. there seem to be many layers in oracle reports to get this to work (database character set, report server character set, font in developer, font on report server, etc.)
    let us know how it goes...an often asked, but rarely answered question (IMO). hopefully this gives you some ideas.
    thanks,
    john

  • € currency sign not acceptable in RSKC

    Hi BW experts,
    I tried to add the u20AC currency sign in transaction RSKC but the system converted it to # when execute button is it.  The system also produces an error message 'The input field contains prohibited characters (already deleted)'.
    There is an OSS note 1159373 (Euro character not loaded during file upload) which explains the cause of this error.  This note applies to a unicode system however my BI7 system isn't set as unicode.  My BI7 system is currently on support pack 18.
    I do not want to use ALL_CAPITAL in RSKC as it has caused a lot of issues previously.  Is there another way to fix this problem ?  I currently have text data with u20AC in them.
    Please help.
    Many thanks,
    Anthony

    Hi Anthony Tan,
    The blog below says that there are no invalid characters in the texts of master data..
        https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/3955. [original link is broken]
    if it is the characteristic text for an infoobject but not master data ... and if you are unable to handle write this in the field routine
    DATA: L_S_ERRORLOG TYPE RSSM_S_ERRORLOG_INT,
             G_ALLOWED_CHAR(300) TYPE C.
    IF G_ALLOWED_CHAR IS INITIAL.
    CALL FUNCTION 'RSKC_ALLOWED_CHAR_GET'
    IMPORTING
    E_ALLOWED_CHAR = G_ALLOWED_CHAR.
    ENDIF.
    concatenate G_ALLOWED_CHAR '@u20ACabcdefghijklmnopqrstuvwxyz' into G_ALLOWED_CHAR.
    do.
    if not text co g_allowed_char.
    shift text+sy-fdpos left.
    else.
    exit.
    endif.
    enddo.
    instead of text use ur correspondign object...
    try this it works...
    Regards
    vamsi

  • Removing Currency Sign from report figures

    Hi,
    Please any one has an idea on how I can prevent the currency sign from appearing on the body of the workbook.
    I have column headers with the appropriate currency sign but I do not wish to see the key figure values appearing with the currency sign prefixed.
    Your assistance will be appreciated.
    Regards,
    Uche

    Hi
    create a new forumla with NoDim(key figure) and use that formula while hiding the orinigal key figure.
    This will work.
    Regards
    Pradip

  • Display totals with currency sign in ALV

    Hi,
    I have to display totals with currency sign in ALV.
    column1      colums2
    10               USD
    20               USD
    30               USD
    40               USD
    100            USD
    Can anybody help on this.
    Regsrds,
    Zak.

    Hi,
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-do_sum      = 'X'.        "Display column total
      fieldcatalog-datatype     = 'CURR'. "
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    Thanks
    Vikranth

  • Totals text and currency sign in alv grid

    Hi!
    How to display totals text and currency sign in the totals part of the alv grid??
    Ex.
                  5    6
                  4    9
                  5    2
    Totals: $14 $17

    Hi,
    For Currency :
    https://forums.sdn.sap.com/click.jspa?searchID=11871008&messageID=3564279
    https://forums.sdn.sap.com/click.jspa?searchID=11871008&messageID=1019294
    For Total_text
    Maybe you will find something in examples SALV_OBJECTS.
    it's a package in the systems above 6.4 with new ALV. There are nice examples. Main package is SALV.
    https://forums.sdn.sap.com/click.jspa?searchID=11871273&messageID=3935361
    Regards,
    Shiva Kumar

  • Currency sign in identifiers - what about � � � �?

    Is the following true for any currency sign?
    [from tutorial http://www.javacertificate.com/]
    An identifier is a word used by the programmer to name a variable, method, class, or label.
    Identifiers can start with the currency sign $,�, but cannot start with a digit. Identifiers can start with any currency sign as long it is a Java Letter.
    what about � � � �?
    �_euro
    �price
    �ytuy978
    are these valid identifiers?

    You can test it with the method Character.isJavaIdentifierStart(char c).
    And for example,
    java.lang.Object \u20ac = new Object(); //the unicode escape \u20ac is for the euro symbol
    System.out.println(\u20ac.toString());runs normally.

  • How to add currency sign?

    Hi,
    I have a group currency key figure in my report. I want to add $ sign in front of the amount for ex. 12550 it should show as $12550.
    How to add currency sign $ in front of the aount.
    Pts for ans.
    Regards,
    Shri.

    Hi,
    You can enable currency in the reporting output using following steps:
    Query properties> Display> select Display scaling factors for key figures.
    but using this option currency($) will be displayed after the amount. it means key figure values will be displayed like 300$, 800$.
    hope it helps..
    regards,
    raju

  • How to Currency Sign

    How can I change the currency sign in report like from dollar to pound sign. Any help and advice will be highly appreciated.

    You'd better to post this thread to Reports forum....
    Reports
    My greetings,
    Simon

  • Multi-language currency sign display

    Did anyone figure out how to display multiple currencies utilizing unicodes. I have a need to dynamically display euro, yen, pound, or us dollar signs. The currency sign needs to be stored within database and pulled out on the form or report needs.

    I am not sure what you mean by displaying currencies utilizing Unicode. The four currencies that you listed can be supported by the Microsoft English Windows codepage-1252 without going to Unicode. And also you don't need to store currency symbols inside the database, it can be retrieved via SQL by dynamically changing the NLS_TERRITORY session parameter.
    SQL> alter session set nls_territory=america;
    Session altered.
    SQL> select to_char( '123.45','L999.99') from dual;
    TO_CHAR('123.45',
    $123.45
    SQL> alter session set nls_territory="united kingdom";
    Session altered.
    SQL> select to_char( '123.45','L999.99') from dual;
    TO_CHAR('123.45',
    �123.45
    SQL> alter session set nls_territory=japan;
    Session altered.
    SQL> select to_char( '123.45','L999.99') from dual;
    TO_CHAR('123.45',
    �123.45
    SQL> alter session set nls_territory=france;
    Session altered.
    SQL> select to_char( '123,45','L999.99') from dual;
    TO_CHAR('123,45',
    �123.45

  • Text view with price and currency sign

    Hello,
    I have a textview in an table showing the netprice. The datatype is CURR. I would like to show the currency sign in the same textview, e.g. 1,87€. Is this possible and how?
    regards
    stefan

    Hi Stefan,
    Declare another attribute in your table (say final_price) of type string. For all the elements in your node, concatenate the price and currency and fill in the values for final_price. Now, let your text view display final_price.
    For example, this is how your data should look in the node
    price-curr-final_price
    100---€----100€
    24----€----24€
    Hope this helps.
    Regards,
    Neha

  • Wrong currency sign

    Somewhere along the way, AppleWorks 6.2.9 on my machine has decided that my currency sign is the British Pound sign (£). Granger Morton posted this response when I mentioned the problem in another thread:
    I just had this problem and in desperation changed the settings in System Prefs/Formats.
    Although in 'Formats" it was on british pound (which I wanted....it was showing dollars in appleworks spreadsheet) I changed it to Zimbabwe dollar, started appleworks and spreadsheet was showing Zimbabwe dollar. After closing apleworks, I changed it back to British pound, started appleworks..... job done, set back to the good old pound. Obviously a little glitch somewhere.
    I've gone through the general procedure he describes—quit AppleWorks, change the System Preferences > International > Format... Currency setting to one of the other choices, then start AppleWorks, open a new spreadsheet, format a cell to Currency with the default precision of 2, and enter a value—but to no avail. No matter what currency I've set the System prefs to, AppleWorks continues to display £123.00 (or similar) in the cell. Any ideas?
    Regards,
    Barry
    iBook G4 OS X 10.4.6 AppleWorks 6.2.9

    Hmm, just like me. Are you using one of Apple's
    Canuck layouts, like the CSA one, or the patch that
    puts up a Maple Leaf even tho' the keyboard's 100%
    US?
    Ther are two Canadian keyboard layouts in 10.4.x, "Canadian" and "Canadian French—CSA". I'm using the former.
    I ask because a switch to the Union Jack will
    assuredly put a pound sign in your formats, as you
    describe, and Old Glory will likewise give you dollar
    signs. Apple's idea of Canadian keyboards (and
    attendant format assumptions) is something only a
    swivel servant committee could love. The patch
    (Google "CanUSA.rsrc") is the layout for the rest of
    us
    Try the Aussie flag, or the US and see if either
    cures your ill. If so, get the patch.
    Both the OZ and USA layouts make no difference. Even with the US keyboard selected, System Prefs set to show currency as US Dollars, and a restart of AppleWorks, the spreadsheet still attaches £ to currency.
    From what you've said, Tom's patch isn't likely to help, n'est pas?
    Regards,
    Barry

  • How do I change currency sign $ to full wording of the currency ie USD on our Sales invoices in Great Plains?

    Hi,
    We are working in a multi-currency environment, many countries around the world are using the $ sign for their local currencies (like Australian
    dollar). We invoice in USD but our invoice templates print the dollar sign ($), customers are confused which denomination they should pay with.<o:p></o:p>
    How do we change on our Sales Invoice templates the $ sign to spelled out USD please.
    Thanks 
    Zuzana

    > How do we change on our Sales Invoice templates the $ sign to spelled
    > out USD please.
    That's rather not group policy related, but depends on the application
    that prints your invoices. I'd suggest contacting the application vendor.
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

  • Currency sign in report

    Hi,
    I have created an ageing report for AR in BW 3.1
    My report has two columns. One is Debit amount in Local currency and Debit amount in Group currency (USD)
    Though the amounts in both the columns is correct; it shows ERROR word in front of the amount in second column.
    for ex: 12443ERROR I want to display this as $12443.
    How can we add $ sign in this column in thid report?
    Pts for ans..

    Hi Pankaj,
    Local currency has several currency units, but grp currency is in USD.
    Values in report is coreect but it shows error word in front of the value.

  • Currency sign in smartforms

    hi,
    I want to print the € sign on my form... but from the currency-key field I only get 'EUR'...
    I also tried to 'hard-print' the € sign, but then I get a #... ?!
    I'm sure the answer is as easy as the question

    HI
    GOOD
    . The currency format in the user master is set up in the way you have
    described.  You can change this in the user master preferences.
    2. You are printing an invoice in a European or Asian currency and the
    currency is set up to print that way.  To fix this, you can use the SET
    COUNTRY command within the smart form to set it to print in the style of the
    country you want, e.g. U.S. or Canada.  Or, you can change the config for
    the currency in table T005X.
    GO THROUGH THIS LINK
    http://sapassist.com/groups/groups.asp?v=sap-r3-dev&m=3&y=2004
    THANKS
    MRUTYUN

Maybe you are looking for

  • Error while creating Bidder in portal

    Hi, While creating the bidder in portal I am getting error " Enter Name", if i enter the organisational unit name/ number it is not taking, which name should be entered here. Thanks Rakesh

  • Can't reverse aggregated payment document

    Hi, I can't reverse an aggregated payment document with FP08. I get the error message IUEEDPPLOTA 245 "Payment doc. 1234 is allocated to a contract acct for aggregated posting".  What can I do. Best regards, Ben

  • Generating dme file

    hi all im having a problem with generating the dme file. while paying the open items through app,dme file is not generated. plz tell the config related to dme file.no error mesg is displayed. waiting.....

  • Time machine backup erased? HELP

    After encountering hard drive problems with my mac air and getting new installed, went home to restore computer from time machine backup. Problem is: disk is there, but there are noe files! It´s like it is wiped clean. Was what happened to mac hard d

  • Copyright meta data

    I don't know if updating from cs2 to cs4 changed this but: Previously when I used metadata templates to attach copyright information to large amount of photos, the information was readable for example in windows file manager when looking "properties"