Remove currency symbol in a report

Hi
Can anyone tell me how to remove the currency symbol from a report e.g. an invoice.
Regards,
Henrik Fladkjæ

Hello Henrik,
You can use the Database textfield other than the System Variable field to avoid the Currency symbol displayed in the report.  Hope this will help.

Similar Messages

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

  • How to implement new Indian currency symbol in oracle reports ..?

    Dear All,
    One of our client needs to display new indian currency symbol instead of the "Rs" in the report ourput.
    Our 10g application and db server is deployed in Sun solaris environment
    Please let me know how can i implement the same.
    Thanks in advance
    Thangaraj

    You can use an image, like it's done on Wikipedia:
    http://en.wikipedia.org/wiki/Indian_rupee
    There is no Unicode for this symbol (yet), so this is the only way.

  • Currency symbols on crystal reports rather abbreviation

    This may have been discussed before so my aplogise, i'm fairly new to SAP B1 & crystal so may need some simple instructions
    I am editing the crystal Purchase Order and I have managed to replace foreign currency abbreviation such as EUR & USD with € and $ respectively but when the GBP abbreviation should be shown as £ it is not.
    I believe it has something to do with the OPOR.DocCur which doesn't seem to be used on the purchase order when the business partner is Local Currency (GBP)
    I used a case statement like below:
    case "USD" : "$"
    case "EUR : "€"
    case "GBP" : "£"
    default "£"
    I also removed the case "GBP" : "£" but no joy GBP is showing when the purchase order uses a british business partner.
    What am i doing wrong?
    Thanks in advance!
    Ian

    Hi Lan,
    1.Follow as per Kalaiyarasan Veerasamy .
    2.You have to give {OCRN.DocCurrCod} in Currency symbol formula editor.
    -Rajesh N

  • 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 currency symbol in PLD

    Hi All,
    I would not like the currency symbol to be printed in PLD. Can anyone plz help me.
    Regards,
    NN

    Hi Rich,
    Try this,
    for example: Document Total - Field ID -> F_123
    ->> Open your PLD.
    ->> Create 1 Formula Field in Page Footer and put the below formula in Formula Field.
    Amount(F_123)
    OR
    Substring(F_123,3)
    IF you add currency symbol in Doc.Total field.
    Formula Field=Amount(F_123)-> Uncheck Tick Mark in Visible at General Tab on Properties Window.
    and
    Doc.Total = F_123 -> put the Tick Mark in Visible at General Tab on Properties Window.
    Regards,
    Madhan.

  • Currency symbol in interactive report

    Hi,
    I used oracle format masks "FML..." to show the euro symbol which is defined in the Process "execute immediate 'alter session set NLS_CURRENCY=''€''';"
    When it is the first time to open the report, euro symbol shows. But after you do other actions like using filter, the sign changes to '$'. How to control this?
    Thanks in advance!
    Edited by: user8991541 on Feb 1, 2010 2:41 AM
    Edited by: user8991541 on Feb 1, 2010 2:49 AM

    Hello:When it is the first time to open the report, euro symbol shows. But after you do other actions like using filter, the sign changes to '$'. How to control this?This is because Interactive Report regions use PPR (Partial Page Refresh) for filtering/sorting etc. So, your page-processes don't execute. Your best bet is to apply the currency format in the query itself. Something like
    select to_char(some_amount,'FML999G999G999G999G990D00') from amt_table;
    varad

  • Insert currency symbol($) in Bex report

    Hello gurus,
       I developed one report in BW which display result as decimal no.
    but i want to display it as currency, like $ as prefix for every value.
    Please help me in this regarding
       Thanks in Advance
    Mahesh

    Hi,
    Instead of using decimal in your KF, use currency. Then the system will automatically take the currency values.
    Regards,
    Vivek V

  • Currency symbol not shown when loaded report using JRC

    I'm trying to show the currency symbol in the report file. the .rpt files is already designed with MS Access table but now im reusing the report and populating pojo classes to map with tables. the report that is bound with MS Access table shows currency symbol in currency fields. but when I load report with JRC, it is not showing. I tried to change Fieldformat also programattically as below.
    ReportObjectController reportObjectController = report.getReportDefController().getReportObjectController();
    ReportObjects reportObjects = reportObjectController.getReportObjectsByKind(ReportObjectKind.field);
    if (reportObjects != null && !reportObjects.isEmpty())
                     for (int i = 0; i < reportObjects.size(); i++)
                         IReportObject reportObject = reportObjects.getReportObject(i);
                         if (reportObject instanceof IFieldObject)
                             IFieldObject fieldObject = (IFieldObject) reportObject;   
                                IFieldFormat ifFormat = fieldObject.getFieldFormat();
                             ifFormatObject = (IFieldFormat) ifFormat.clone(true);
                             break;
    for (int count = 0; count < tables.size(); count++)
                        // Set data source for each table
                        setDataSourceForEachTable(tables.getTable(count).getAlias());
    reportObjectController = report.getReportDefController().getReportObjectController();
    reportObjects = reportObjectController.getReportObjectsByKind(ReportObjectKind.field);
    if (reportObjects != null && !reportObjects.isEmpty())
             for (int i = 0; i < reportObjects.size(); i++)
                 IReportObject reportObject = reportObjects.getReportObject(i);
               if (reportObject instanceof IFieldObject)
                             IFieldObject fieldObject = (IFieldObject) reportObject;   
                             if (fieldObject.getFieldFormat().getNumericFormat() != null)
                                  fieldObject.setFieldFormat(ifFormatObject);
                                  //fieldObject.setFieldValueType(FieldValueType.currencyField);
                                  break;

    Above code just get one of the currency field and clones the format. And after setting the pojo datasource, I'm again setting the cloned format to that particular field. But still  Im not getting currency symbol in the reports that are loaded via JRC. even I set locale before opening the report. but that also not helping.
    report.setLocale(Locale.UK);
    report.open(reportName, 0);
    Please guide me, If I'm wrong in this.

  • How to set currency symbol correctly in crystal report

    Hi all,
    I am using the Crystal Report 2008, I have one issue regarding the currency symbol in the crystal report.
    it seems the CrystalReport use the System Default currency symbol. e.g.
    ProductA Cost: $1000
    It displays,
    ProductA Cost: £1000
    in euro locale and $ in english locale
    It doesn't make sense in business. The question is how do we set the currency symbol "$" to the report? I google some websites, the SetLocaleInfo may be one option, I would like to know the detail and if there are more solutions.
    Thanks for your help

    Before in our legacy application, we used Crystal Report 9 & VB
    'Crystal Report Designer Components (RDC).
    Set CrxApp As New CRAXDRT.Application
    I can set the crxapp to nothing and recreate this design component.
    Set CrxApp = nothing
    After SetLocaleInfo, if we set the CrxApp to nothing, it will create the RDC and the currency symbol will be updated.
    Now we are using Crystal Report 2008 and C#, the RDC is not supported in 2008
    What can I do?
    Any input is greatly appreciated.
    Edited by: Dennis Zheng on Feb 17, 2009 3:57 PM

  • 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 remove the '#'symbols for infoobject movement types in bex reporting

    Hi All,
      I have a problem in Bex reporting. The problem is when ever executing the report  that time some of the characteristic values is shown in layout '#' Symbols. i want to remove the '#' valuse in report.
    is it possible please give me step by step procedure for how to remove the '#' Symbols in reporing layout.
    this is very urgent please help to me on this issue.
    Thanks & Regards,
    Guna.

    Hi Guna,
    To achieve this issue, we need to replace the value of ‘#’, we need to change the description while retrieving the data from tables. So we need to write some ABAP code in SE38. Go to RSA1 transaction and go to Info objects tab. Then go to context menu for ‘cProject Key Figures’ as shown below. Click on the ‘Object Overview’ to get the overview of all the info objects. Here you can see the field names which are used to know the table names.
    In SE11, type the table name in ‘Database Table’ field. Now press ‘F4’, then you will get the next screen to select one of the P/Q/S/T tables.
    Now click on the button rounded in the below screen to view the data in the table.
    Now click the execute button or press ‘F8’ to view the records.
    Now go to Tcode: SE38. Create a source code and give some program name for that source code. To write code, you need access key. Contact your BASIS for this.
    Now write the below code for that particular table in which you want to change the value ‘#’ to description ‘Blank’. In the below source code, we are updating particular table, setting the field as ‘Blank’ where it is null or no value. Here the field will automatically get updated to ‘#’ if there is no value or null.
    update /BIC/PXXXXX set /BIC/ZXXXX = 'Blank' where /BIC/ZXXXXX is null or /BIC/ZXXXX = ''.
    if sy-subrc eq 0.
    write 'successful'.
    commit work.
    else.
    write 'unsuccessful'.
    endif.
    OR
    If this # is because of the missing master data than,
    right click that IO -> maintain master
    you will see first row as a blank.
    whatever value you maintain in this row that will come in the report for all Not assigned # values of the master data in the report.
    maintain it according to your requirement, save and activate the master data
    Hope this helps u...
    Regards,
    KK.

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

  • Different currency symbols in report

    Hi All!
    Can anybody show me how to create international reports. I need to show different currency symbols in the same report but for different clients.
    I try to use set_nls function, but no luck.
    Any suggestions will be appreciated!
    It's urgent.
    Mike

    hi2guru wrote:
    > Do u want to display the values in particular currencies?
    Hi,
    I want to have for each row the local currencies and specific rows corporate currency.
    For example (1111 (this is the company code)) and 0010 (this is the corporate currency):
    1111  1000,00USD
    2222  2000,00JPY
    3333  3000,00RMB
    0010 1234,00Euro (1234,00 as example conversion in corporate currency)
    So I have rows with local currency which are transfered all into the BW and displayed in the report.
    And I need particular rows where the conversion should be displayed.
    I know the transaction RSCUR but don´t know how to handle the different currency appearance in the report.

  • Currency Symbol Removal

    Can I use the AMOUNT() formula to remove the currency symbol from a system variable (eg Sub Total System variable no 136) and what is the correct syntax within () please
    Thank you
    Robert

    That is exactly the Function you need.
    AMOUNT(Field_xyz)
    Within the Paranthesis you will see the Field or simply type the field number
    Suda

Maybe you are looking for