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

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

  • Remove scaling factor from key figure - still shows in Report !

    Hi all,
    A key figure we use somehow had its scaling factor set to 100.
    This was accidental, so I have changed the key figure to have no scaling factor and then activated it.
    The query that uses this key figure still sees it as having the 100 scaling factor however.  While this is the case, I cannot set it to no scaling factor as needed.
    I have tried adding this key figure to a new report and it still comes in with the incorrect scaling factor setting.
    So far I have tried,
    Changed the scaling factor on the key figure to none and activated.
    Regenerated the query through rsrt
    Removing the key figure from the query and then readding as well as adding the key figure to a entirely new report. Incorrect scaling setting still comes through in both cases.
    Checked table RSDIKYFPRO and RSDKYF - both of which have no scaling as their settings for this key figure.
    I know that I could created a restricted key figure in the query from the original and set the scaling factor to none to get around the problem, however I would like the query to see the settings in the key figure.
    Can anyone suggest how I can resolve this ?
    Many thanks,
    Blair

    Was there ever a solution to this problem? I, too, have noticed the same issue. The key figure properties (in my case, # of decimal places) is not inherited in the query, and the only solution was to change the kf properties directly in the query, which I shouldn't have to do. The selection of decimal places "from key figure (0)" does not work; I have to override this and select "0". Anyone seen any notes or anything to fix this?
    Thanks.
    Rachel

  • How to remove -ve sign from the deduction wagetype in payslip

    Hi Experts,
    Plz tell me how i can remove the -ve sign from the deduction column in
    the Payslip.
    Regards
    TS

    Hi ,
    Do you just have to show the sign different in payslip and the RT .
    Coz what it seems is that the RT is having a negative WT , so in order to make it positive you goto
    PE51 , enter the form you are using and change the cumulation id for deduction wage type .
    Hope this helps.
    Regards,
    SureshP

  • Remove currency symbol from currency cell format?

    This might seem like an odd question but I only want my top row to have the currency symbol and the rest of the rows to simply have the number with no currency. I know I can switch the cell format to Numbers but then I lose the formatting of how negative numbers are displayed (quotation marks versus the negative symbol).
    So, is there any way to simply remove the currency symbol from the currency cell format?

    Hello
    As the special format for negatives is only meaningful for currencies you can't get if if you disable the currency format.
    There is an alternate way to highlight negatives but I don't know if you would be satisfied with it.
    Select the cells whose format must be number, not currency.
    Open the Inspector of Cells
    Check "Conditional Format"
    Click "Show Rules"
    Of course, you may select an other color.
    Yvan KOENIG (from FRANCE mardi 22 janvier 2008 14:51:11)

  • How to remove UNIT ERR from report

    Hi,
    When the report is executed, the columns and key figures (restricted, calculated) etc are displayed properly, but under every key figure column header there is a word "ERR" is displayed , please let me know how this can be removed from the report.
    Thanks
    Akila. R

    Hi,
    As suggested in the above threads either maintain the Units for the objects or try to remove the ERR message by using the function NODIM() for corresponding key figures.
    Regards,
    Rik

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

  • Remove KF value '*' from report

    Hi,
    In report * is coming in KF. I need to restrict those records which has KF value as '*' .
    Anybody suggest how to remove this.
    Points assured....
    Thanks,
    Debasish

    Hi Debasish,
    You may be interested to see the following threads ..
    Help Rqd Urgent: Remove star * from query
    * as result in query
    How to remove Star (*) Symbol
    Reporting data in alternate unit of measure
    Regards.

  • CUSTOMIZATION OF  F.01 (Remove All Header From Report)

    hi ,
    i need to remove all header line from the output shown by t-code f.01 ..
    More details:- when i give details in f.01 then i execute it .then report will display at this point i dont want date, page number etc ,rather i want just  company name,
    and same output should be shown after print preview..

    No reply from any one Finaly closing this thread

  • Can you remove column headers from report downloads?

    I'd like to remove the column header from the report downloads. For example, the report download file currently looks like:
    EMPNO,ENAME
    7839, KING
    7698, BLAKE
    Where as I'd like it to just be:
    7839, KING
    7698, BLAKE
    Does anyone know if this is possible?
    Thank you,
    Martin
    http://www.talkapex.com

    There is a work around that I used before:
    - Create a new page.
    - create a report region and copy your origional report query in it
    - in report attributes >> choose no header
    - in report attributes >> choose "CVS report" as your new report tempate.
    - go back to your origional report, create a button in that page ( call it EXPORT ) that submits as EXPORT
    - create a conditional branch that goes to your new report page , make it conditional ( when EXPORT button is clicked)
    This way, you will have a new EXPORT button on top ( or whereever you want ) of you report, when you click on it , it shows a download prompt for your export , the export won't have headers..
    Sam

  • Remove comparison type from report

    How do I remove the comparison Type from the report?
    Is it possible to remove the whole row in the HTML report, column in xml format?
    Thanks,
    Sam

    the answer to my last question can be found at http://forums.ni.com/ni/board/message?board.id=330&message.id=2452&query.id=69156#M2452 with one note.
    When the include in report flag is selected all the subsets are included in the report. To take out a particular property such as comparison type in multiple measurement step enable the "don't copy to result" flag for that propoerty. i.e multiplemeasurementstep>>result>>measurement(has flag include in report)>>measurement[0]>>comp(enable don't copy to result)

  • Unable to Remove XHTML tags from reports

    Does anyone know how to remove the HTML tags from displaying on a report?  I've formatted the field to read HTML but when run, the html tags still display.  I'm using XHTML to retain the formatting of the field and would like it to display correctly in the report.
    Is there a solution to this and is anyone else experiencing this problem?

    In which client are you? The Java Report Panel or the DHTML?

  • Best way to remove unwanted signs from string

    Which is the best way to purify a string from possible dangerous signs? I want to remove all characters that is not a-z or 0-9? how would I go about?

    read the string character by character, and check to
    see if they're characters you want to remove or not,
    by comparing them to the ascii values of characters
    you permit. I've used this before, but I can't
    remember what exactly it permits, and I'm too lazy to
    look up the ascii table :) But this sort of thing
    works.
    int c = in.read();
    while(c!=-1){
    if((c<33)||(c<58&&c>44)){
         out.write(c);
    I thought about that too. But the values in the ASCII table... arn't they a little volatile to use? I mean, will my application work on other systems or systems with other languages?

  • How to remove Sorting options from Report's Column Headers.

    Hi All,
    When i try to run a Query in Enterprise Portal, I'm getting a " Sorting option" in each column. Thats not needed in a Report.
    Kindly suggest me How to remove that Sorting options from Each colum header.
    Thanks in Advance.
    Regards,
    Jayaprakash Jayachandran.

    hi,
    U can uncheck the sorting option in Navigation Pane,which will remove all sorting options.
    Regards,
    aanand

  • Currency converting from reporting to functional

    Hi,
    we have loaded history data in USD. is there any way we can convert that data to functional currency associated to entity.
    Please sugest me.
    Thanks,
    Nagendra.

    Hi,
    I think the input currency for the entity in question is not USD. And I also assume that USD is the reporting currency for your application.
    If you make a copy of the currency conversion rule(s) created by planning and modify them as per your requirement, or if you write your own business rule, you can convert reporting currency data back to input currency data.
    Alp
    Edited by: Alp Burak on Jul 10, 2009 10:46 PM

Maybe you are looking for