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

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

  • 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

  • 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

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

  • 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

  • I singed into CC on my home computer, now I cant sign in at work? How can I sign in at work?

    I singed into CC on my home computer, now I cant sign in at work? How can I sign in at work? Isn't there an option to sign out of all other devices?

    If the IT dept. at your former employer knows what they're doing, they have already had access to everything on your work computer. As to transferring your data to your home computer, read here:
    https://discussions.apple.com/docs/DOC-3141

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • How do i sign up for a new e-mail address @icloud or @me; and can I have more than one e-mail address?

    how do i sign up for a new e-mail address @icloud or @me; and can I have more than one e-mail address?

    Cessna007 wrote:
    how do i sign up for a new e-mail address @icloud or @me; and can I have more than one e-mail address?
    You create an @icloud.com address in the first place by signing into Settings>iCloud with your Apple ID and choosing an addres - you can only create an @icloud.com address, not @me.com.
    Then if you want further addresses on the same account you can add up to three 'email aliases' - these are additional addresses (not accounts) which deliver into the same inbox as the main account. (In fact it's a good idea to give out alias addresses, rather than the main address, because if they attract spam you can easily change them.) (New aliases can only be @icloud.com ones; @me.com addresses cannot now be created.)
    You should be aware before you start that once you've created an alias you cannot turn that address into a full iCloud account or move it to another account.
    More information on aliases here: http://help.apple.com/icloud/#mm6b1a490a

  • How do i sign in onto facetime if it keeps on sayin 'an error occured during activation'.?

    How do i sign in onto facetime if it keeps on sayin 'an error occured during activation'.?

    iOS: Troubleshooting FaceTime        
    iOS: Troubleshooting FaceTime and iMessage activation
    iOS: Using FaceTime                               
    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • HT204053 Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Welcome to the Apple community.
    You can add more than one account to your iPad, but you can only have one primary account. Secondary accounts which you can add at settings> mail, contacts, calendars do not have all the features of a primary account such as photo stream.

  • I just bought a macbook pro and want to use my own iCloud account for my iPhone. How do I sign off of the current account on my iPhone and sign in with my own iCloud account?

    I just bought a macbook pro and want to use my own iCloud account for my iPhone. How do I sign off of the current account on my iPhone and sign in with my own iCloud account i set up my mac?

    On your phone, Go to "Settings", "iCloud", scroll to the bottom and "sign out."  Assuming you have the the account password/security info of the current account, it will delete everything iCloud related upon your approval (don't worry, everything will remain in the cloud.)  Once signed out, in the same settings location (under "Settings", "iCloud") sign in using your Apple ID and Password.
    Hope this helps.

  • How can I sign out of my apple account on my iPhone with out erasing everything

    How can I sign out of my apple account on my iPhone with out erasing everything

    I meant apple ID

Maybe you are looking for

  • Itunes wont update podcasts

    MY itunes wont update my podcasts. I go to the podcast websites and i see there are many new versions available but my itunes wont update. can anyone help I have tried to reinstall itunes and fix permissions. all updated versions and osx also latest

  • Numbering a group of photos in a sequence

    I want to select a group of images (say, to use for Dropbox) and number them in sequence (say, 1 to 20) so that they display in order. A quick way to do this?

  • Database content not showing in JSP page

    hi guys, I am having problems with showing the database content in a JSP page. I check my database and see that the content do exists. Can someone pls kindly advise. Below is my code: <TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0> <TR> <TD>Last</TD> <T

  • Project for dual layer DVD

    Hi there, I have a project which contains several individual sequences that have been compressed separately and which constitutes several parts of my future DVD. The total size is such that I need to burn a dual layer DVD. How do I determine where to

  • Calling an Interactive Form which is embedded in another WebDynpro by link

    Hello guys, I have got the following problem. We have got a WebDynpro-Application in whihch an Adobe Interactive Form is generated. Now, we just want to call this Interactive Form from another WebDynpro-Application by a link. How can I do this? Thank