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

Similar Messages

  • 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 change the $ sign in a class name?

    How to change the $ sign in a class name?
    After compilation I get classes with names like abc.class, abc$1.clsss abc$2.class etc.. How do I get different names (without the $ sign) that will be accepted by my web host.

    Thank you, I found out it had to do with the actionPerformed(ActionEvent e) assignment,
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Subtotal")) {
    bla bla �..
    I will have to rewrite some of my source code. I gave you points, thank you again.

  • How can change currency rate in clearing document

    How can change currency amount in clearing document

    Dear Michael,
    It was a User confusion with Creation Date of Invoice, Billing Date of Invoice and Posting date of Accounting Document.
    User had created Invoice on some 01.03.2009 but Kept Billing Date as 26.02.2009. So, while released Accounting Doc. on 10.03.2009 (Releasing date and not Posting Date), It gets Posted on 26.02.2009, only, and not on 10.03.2009.
    The whole confusion was:
    When User refers Document Flow (for Invoice in VF02), System shows Invoice Date as 01.03.2009, against Accounting Posting Date 26.02.2009.
    Whereas,
    When I showed FBL5N to user, BL Document and AB Document both get posted on 26.02.2009 only.
    Its Clear now.
    Best Regards,
    Amit

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

  • How to change currency in PO item by using BAPI 'BAPI_PO_CREATE1'

    Hi. i want to change currency in PO item.i just find this field in condition table in this BAPI. code is as below
    *POPULATE condition data
            CLEAR t_po_condition.
            t_po_condition-ITM_NUMBER      = v_poitem * 10. " Item No.
            t_po_condition-COND_TYPE       = 'PBXX'. " Condition type
           t_po_condition-CALCTYPCON      = C_B. " Calculation type
            t_po_condition-COND_VALUE      = SEQ_FILEH-NETPR. " Condition value
            t_po_condition-CURRENCY        = SEQ_FILEH-WAERS.
            t_po_condition-COND_P_UNT      = SEQ_FILEH-PEINH.
            t_po_condition-CONDCHAMAN       = c_x.
            t_po_condition-COND_UPDAT      = c_x.
            APPEND t_po_condition.
    *POPULATE condition data flags
            CLEAR t_po_conditionX.
            t_po_conditionX-ITM_NUMBER         = v_poitem * 10.
            t_po_conditionX-ITM_NUMBERX        = C_X.
            t_po_conditionX-COND_TYPE          = C_X.
            t_po_conditionX-CALCTYPCON         = C_X.
            t_po_conditionX-COND_VALUE         = C_X.
            t_po_conditionx-CURRENCY           = C_X.
            t_po_conditionX-COND_P_UNT         = C_X.
            t_po_conditionx-CONDCHAMAN       = c_x.
            t_po_conditionx-COND_UPDAT      = c_x.
            APPEND t_po_conditionX.
    any advice?

    Just Select The Total Column, then Drag & Drop accordingly..
    whereever you want..
    Alternatively you can do by
    in the top right corner of the item overview you have a button for table control (above the vertical scroll bar).
    If you click that button, you get a pop-up from where you can customize the layout.
    Press the blue info button there and read how this is to be done.

  • How to change database in crystal report design

    Hi experts
                         I have created a report in crystal addon using demo database, now I want to change the database to see the actual testing of report. I tried by Set Location option in Database expert I log off the current server then Log on It ask the database name I put new database name . But when I Run the report it show the previous database records.

    >
    Julie Jamieson wrote:
    > Try using a dot (.) as the server if you want to be able to run the report from inside SAP from a different database
    What do you mean by this?
    I have not yet installed the Crystal Addon for SAP (Using R1 Reports now) I would hope that Addon allows you to use a different database with Crystal, my current solution does and that is how I build most of my reports with views and sp's.
    I hope this is not to far off topic.
    Thanks
    Ken W.

  • 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

  • How to Change Fonts in Oracle Reports

    Hi All,
    When ever i am changing fonts in my report it reflects me when i run them on reports builder installed on my local machine.
    But when i put them on application server, these changes are not reflected. I am generating PDF reports.
    Can some body help me what should i need to do to reflect the font changes.
    Thanks in advance.
    Regards
    Kamal

    Hi Kamal,
    Whether the font used in the report is installed in the machine where Apps server is installed? If not , use the feature ' PDF Aliasing' to substitue for that particular font.
    For more information on this, have a look at the chapter "Managing Fonts in Oracle Reports" in Publishing Reports Manual. You can download it from http://download.oracle.com/docs/pdf/B14048_01.pdf.
    Thanks,
    Vidya Viswanathan

  • How to change currency in material master

    Could you please tell me multiple way to change currency in material master (mm02/mm02). Currency is under Costing2 tab in material master.
    Thanks..

    Hi,
    In <b>SPRO</b>, u can change the Cuurency.
    The Exchange Rate Type is used to store currency conversion rates for different purposes, in the R/3 System.
    If the R/3 System is to perform exchange rate conversions between a large number of different currencies, it can be simplified by specifying a base currency per particular exchange rate type. Then specify the exchange rates of all currencies in relation to the base currency for the exchange rate type concerned.
    In accordance with legal requirements, the base currency (EUR) must be defined as the From currency for currency conversions within the EMU (European Monetary Union). To do this, set the indicator in the field BCurr = From.
    <b>IMG->SAP Netweaver->General Settings->Currencies->Check Exchange Rate Types.</b>
    Regards,
    Padmam.

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

  • How to hide currency ($) display in Report Designer

    Hi Reporting experts,
    My query has amounts in keyfigure structure. When I use WAD or run directly from the query the display of $ sign is showing only on the top row, but when I use the same query in the report designer the $ is showing on every cell. How to avoid displaying the $ in RD.
    Thanks for your help.

    Ram,
        Create a formula and use the function NODIM(<your KF>) and hide you KF column which shows the $ sign. This would suppress the $ sign.
    Hope this helps...

  • How to change city for weather report in firefox ?

    In a mozila firefox window address bar having extra tool as weather report. i want to change a city from there, then how can i change the current city of my.

    I presume this is some extension? Does it not have any preference settings you can change? Look in the extensions panel in the add-ons window.

  • How 2 Change the Layout of Reports Paramform?

    reports 9.0.4.0.21
    hi folks
    we want to change the layout of the parameter form (html) on this way that it looks like our Corporate Design.
    (Logo, style, color, and so on)
    is it possible to change that design?
    if yes, how?
    thx in advance
    jogi

    Hello,
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b13895/orbr_howto.htm#i1039790
    3.11 Work with Parameters and the Parameter Form
    Regards

  • How to change dollar sign to English pound as default

    How can I change the dollar sign ti english pound sign as my default

    As well as Eric's suggestion (probably the easiest solution), you could add the English (UK) keyboard, by going to Settings > General and then either Keyboard or International.  When a new keyboard is added, there is a globe icon to the left of the space bar: use that to change the keyboard.  The £ sign on the UK one is where the $ sign is on the US one.

Maybe you are looking for