Currency symbol in report

Hi,
Please let me know if there is any FM to convert USD to $ and also other country currency symbols. let me know if there are any standard tables in sap which are related to this.
regards,
Lakshmikanth.T.V

Hi Venkat,
Check out this threads for further info.
Re: Table that keeps currency symbols like US $ etc... - Very urgent
currency symbols
As SAP doesn't maintain any such table, you need to hardcore it in the program or create a ztable for maintaining the known currencies by looking at TCURC.
Regards,
Vivek
PS: Award points if helpful

Similar Messages

  • To Display Currency /Currency Symbol in Report

    Hi All,
    Business Requirement:
    Want to see Actual and Headcount in same column along with currency.
    currently we have separate column for headcount and Actual as below. (Actual and headcount will not come in same row.)
    Company
    Actual
    Headcount
    C1
    $ 1000
    C1
    10
    C2
    $ 1000
    C2
    20
    C3
    $ 2000
    C3
    20
    C4
    $ 3000
    C4
    30
    To display both in same column , I have used NOT function in formula  and displayed the report as Below.
    Company
    Act&HC
    C1
    1000
    C1
    10
    C2
    1000
    C2
    20
    C3
    2000
    C3
    20
    C4
    3000
    C4
    30
    I have calculated the above column using NODIM, so we are not getting $ symbol in report.
    But business want that symbol to appear along with Actual value ($ 1000).
    Please suggest if there is any way to do this.
    Thanks,
    Jaya

    Hello Jay,
    I think Koen Hesters is right. If you use you currency from your unit-dimension you will be able to get currencies in a separate column but not with the figures attached.
    The only thing is that you will get # or not-assigned for the headcount values. If you are using BO tools on top of this BEx report then there is a chance to display currency also in the same column for the Actual values.
    Here check the sample scenario which i tried to develop by looking at your data :
    Kindly click on the screenshot to have a better view.
    Output :
    Regards,
    Ashutosh Singh

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

  • 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

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

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

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

  • 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

  • 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 show swiss  franc symbol(₣) in reports 6i ?

    Hi,
    I want to show the quantities with the currency symbols in my reports. Its properly showing $ but franc symbol is not coming. I tried hard coding the symbol , its not even getting pasted in the column formula (coming as inverted question mark).
    Please help !!!!!
    Thanks
    Subhrajit

    I call reports using Oracle Forms.
    Ok I got solution.
    Thanks a lot

  • Problem with Currency Symbol in IR export to CVS

    I have a number of queries that have been successfully generating csv files for years and have been adapted to provide the basis for the same information to be available as an interactive report with the option to download as csv. The old scripts set the NLS settings at the outset. The Apex app sets the NLS environment in the vpd function. The apex report query is a "select * from some_view" style one that ultimately queries a remote view with several columns like this:
    select TRIM (LEADING ' ' FROM TO_CHAR(ROUND(100,2),'L9999G999G990D00')) x from dual;
    just as the were in the prior manual SQL.
    The "new" apex export to csv files contain an extra character preceding the currency symbol that is upsetting Excel on import.
    old-style hexdumps look like this:
    2c 22 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    new ones like this:
    2c 22 c2 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    Where on earth is Apex getting it into its head to add this (the on-screen report is fine!) and how can I stop it?
    Thanks in anticipation.

    hi,
    this is a normal problem u can avoid this by moveing these currencu value to a character field then print the char field us ing condece... &var(C)&..
    eve if not solve the problem use the TEMPLATE node..
    Please Close this thread.. when u r problem is solved. Reward all Helpful answers
    Regards
    Naresh Reddy K

  • Any SAP standard approach to display the currency symbols without hard code?

    Hi,
    I want to display $ symbol on the report ouput, for the how can we display currency symbols without hard code?
    Thanks,
    Aarti

    Not much chance... If such a standard table exists, then during Euro creation, an OSS note would have been released to add the € character, and I found none, fell free to perform some search on OSS with keywords I didn't try.
    So better build your own customer table with foreign relaction to TCURC.
    NB: Look for symbol list ($, £, €, ¥, etc.) in sites like Currency symbol - Wikipedia, the free encyclopedia. I hope your system is Unicode.
    Regards,
    Raymond

  • Page 1 missing Currency Symbol

    Hello Guys,
    I have a financial report, and I need to show currency symbol once on every page (first line on every page).
    I go to the Number tab on the field format, click Customize, then select the "Currency Symbol" tab and check 2 options - "Enable Currency Symbol" & "One Symbol per page". When I ran the report, the currency symbol appears on every page but NOT on the first page.
    What can I do to fix this issue?
    Thank you,
    Tanya.

    I need to add that the amounts are Summary fields in the Group section.
    When I tried to use the same currency logic : "Enable Currency Symbol" & "One Symbol per page" on the Detail level - I got the first page with Currency and all other pages without currency symbol.

Maybe you are looking for