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

Similar Messages

  • Subject: Displaying key figures without currency unit in BEX reports

    Hello,
    Is it possible to display key figures without currency unit in BEx reports? For example; Material Costs 1000 EUR
    should be shown as 1000. Currency unit EUR and also scaling factor (*1000 EUR) does not interest us.
    When we use display options in query properties, we just see an option of displaying key figures with/without scaling factors, which does not solve our problem.
    Thanks for your reply.
    Regards,
    Nuran Adal

    Hi Eugene,
    thank you very much for your quick reply. We have very detailed reports with min. 10 columns, I should have defined 10 more formula columns to realize this (NODIM), but anyway there is no other way to do this, am I right?
    Best Regards,
    Nuran

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

  • Symbols on Bex Report

    Hi All,
    Can anyone help me to explain meaning for the following symbols that displayed in Bex report results
    1. 1234.00MYR
    2.  X
    3.  *
    Thank you

    X and   *  are the signs displayed as per the settings that are defined in SPRO
    SPRO -> SAP Reference IMG -> SAP Netweaver -> Business Intelligence -> Settings for reporting and Analysis -> General Settings for Reporting & Analysis -> Presenting Numeric values in teh Explorer.
    There you will see four option for BEx values to display if the result is :
    Divison by Zero      X
    Does Not exist      X
    Num.overflow        X
    Mixed values        *
    No Authorisation    Blank
    You can check your settings
    hope it helps
    Sriman
    Edited by: Sreeman on Apr 16, 2008 1:39 PM

  • 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

  • Currency symbol in Bex Analyzer

    Hi gurus!
    I have to key figures. One has a value in dollars and the other in mexican Pesos.
    Now, in Bex Analyzer, the dollar symbol is in the left of the value and the symbol of the pesos is in the right of the value. Could I change the dollar symbol to the right of the number? Is ti possible? How?
    Thanks in advance.
    Regards.

    SPRO -> SAP NetWeaver -> Business Intelligence -> Settings for Reporting and Analysis -> General Settings for Reporting and Analysis -> Set Alternative Currency Display
    OR
    spro->bw->reporting relevant settings->alternative currency display.
    Here u can change after value or before value

  • 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

  • Turn off currency label in BEx report

    Hi there,
    In BEx Analyzer and BEx Web, can the currency label be turned off for values appearing in report?
    Thanks
    Sabine

    Open up your query and right click on the KF structure. Choose new Formula. In the Formula builder dialog box that opens up, choose the NODIM() function from the lower right hand side of this window (it should be under Data Function). Then double clcik the KF you need to set this for (from the lower left hand side). Give an appt description to the new formula.
    Also see here for details:
    http://help.sap.com/saphelp_nw04/helpdata/en/03/17f13a2f160f28e10000000a114084/content.htm
    Hope this helps...

  • Suppressing # symbol from bex report.

    Hi Expert,
            Please provide me the below mentioned code where to write in a detailed manner to suppress the # symbol in the Excel which is embeded with the Bex tab or tell me there are any other methods to do this
    in BEx
    by Peter
    SAPBEXonRefresh()
    Dim c as range
    For Each c in resultArea.cells
    if c.Value = "#" then c.Value = " "
    Next c
    or
    by Jens (consider to performance)
    put in SAPBEXonRefresh()
    resultArea.Select
    Cells.Replace What:="#", Replacement:=" ", LookAt:=xlPart, _
    SearchOrder:=xlByRows,
    MatchCase:=False,
    SearchFormat:=False, _
    ReplaceFormat:=False
    in Web, use table interface, redefine CHARACTERISTIC_CELL method...
    if I_CHAVL = '#'.
    c_cell_content = '0'.
    endif.
    Thanks,
    Sailaja.

    Hi sailaja,
    the below code which you had posted is a MAcro VB code used in Excel.
    follow the below steps to write the macro in excel.
    OPen excell -->Click on microsoft office button -->excel options -->select popular -->enable the tick mark "show Developer tab in the ribbon -->OK --> you can see the option developer tab in the menu bar of the excell.
    select Developer tab -->click on "Macro Security" --> macro settings --> select last option "enable all macros) --> OK
    Click on Record macro in Developer tab -->enter the name for the macro
    --> To assign a CTRL combination shortcut key to run the macro,in the shortcut key box (any lower case or upper case letter)
    Next in the "store macro in list select the workbook in which you want to store the macro.
    Include the description of the macro in the description box.
    OK
    perform the actions that you want to record. --> click on stop recording
    now you can include the code into the macro and save it and use it.
    To know more n steps how to create a macro search in google.
    Regards
    KP

  • Currency Display in BEx Report

    Hi,
    When I am executing a BEx Query with Regional Language options on the OS as English ( United Kingdom ), I am seeing the values in Number format ex : 98766EUR but when I change the Regional Language Options on the OS as German ( Deutshland ) I am seeing the values in text format ex : 98765.60.
    Anything to be changed in Excel to solve the problem???
    Thanks,
    Vamsi

    Hi Sukthi,
    But when I refresh the workbook or execute the query, it should come by default automatically. With the option mentioned below you are changing the cells manually which doesnt solved the problem.
    Thanks,
    Vamsi

  • 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

  • I Need to change Date Format in BEx report

    Hi Experts,
    i Need display with required values with following symbols in BEx report # and Date format change as per client requirement. Without any VB Code.
    Let me know solution for this.
    By
    ANR

    My actual requirement,
    by default date format display in BEx Reports MM/DD/YYYY fomat, but i want change DD/MM/YYYY format without using any VB macro and also instead of displaying "#"  i need display "0" (Zero).
    let me know the solution.
    by
    ANR
    Anybody ....
    Message was edited by: ANR

  • Unable to view report from Bex Report Designer

    Hi,
    When I log on to Bex Report Designer, I click execute button, it is giving a blank page. It is neither giving any error nor any message. We have recently installed NW2004s and BI Cont 703. Now my problem is how to make report visible in the BEX Report Designer.
    Thanks,
    Subhani

    Dear Prakash,
    Thanks for the quick reply. 
    I have religiously followed your Blog.  As far as I know any one who wanna setup BEx has to follow this.  It is the one place where all the settings related to BEx front end were discussed and disclosed.  Thanks a lot for your exemplary attempt.
    Though you have mentioned about the .NET frame work I could not understand how it will effect the "insert" menu of BEx report designer.  But i have checked that also and its matching with your recommendations.
    My question is pretty simple. With sapgui6.40compilation5 with all the latest patches both for gui, BW and BI. Will i get the options of <i>"Report section", "Report section based on Querry"</i>in the <b>"insert"</b> menu of BEx report designer. 
    The mentioned options <i>"Report section", "Report section based on Querry"</i>  were shown in the webnair of BEx report designer.  Pls check the link:
    (As per the SDN these menu items should be available in BEx report designer..Pls observe the Insert menu in the very first few seconds)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9c059b57-0701-0010-3283-e5e8669f827e
    We have installed and upgraded the system to spstack 8 and done all the settings.  Our front end is also updated with the service packs.  But we could not get those options.  If you can give me your mail id i can send you the screen shots.
    Thanks & Regards,
    Sridharb

Maybe you are looking for

  • Help !! Safari always crashes ! It sometimes work then doesn't load the pages thought time warner cable tells me my internet is working. What can i do ?

    all is in the title , my airport is conected , internet is connected , but safari always crashes !!!! Its gonna work for 5 minutes then crash for 10 minutes , then work again ! then stop again i really want to fix this problem soon please help me !

  • Angry with itunes10. will no longer purchase songs from itunes.

    I have bought so many songs off itunes It won't let me burn any of them onto a cd since updating to itunes10 So i try putting it own windows media player. it won't let me do that. So then i try burning it on a cd it won't let me do that either. I've

  • Sql in report 6i

    Hello! I have two tables, tableA and tableB, see below tableA id value A051 100 A052 101 tableB id value2 A051 1234 and I have this sql statement in my reports (reports 6i): select NVL(a.id,a.id),NVL(a.value,a.value),NVL(b.value2,'***') from tableA a

  • Master data....PRD...

    Hi Experts- I have created COST CENTERS,CC groups, CE gropus, CC CYCLES(KSU1) AND CO-PA CYCLES(KEU1) FORMS AND REPORTS in QAS. Now i want to move all this master to PRD. What is the best practice to move can i move through OKE6(by creating TR IN QAS)

  • Help - installation error 2004s

    Hi, I am installing SAP Netweaver2004s(ERP)SR2 on (db2-9.5) the database instance(db2) failed with this error. ERROR      2008-05-19 19:14:48 [iax6binstc.cpp:411]            CDB6Instance::CreateInstance(const map<iastring,iastring>&)            lib=i