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

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

  • How to add Percentage Sign

    Hi All,
    I have made one formula which calculating percentage.
    I am getting right value of that formula.
    Ex.
    A=50, B=100
    formula:  A/B*100 And answer is : 50
    Now i want to display this 50 as 50%.
    How can i add this % sign with this value?
    Regards,
    RIshit

    Hi Shantanu & Rakesh,
    Thanks for your earliest reply.
    But i cannot modify formula.
    Because i have used this in Cell Reference formula, in my report there are minimum 100 formula.
    Please suggest any other way?
    Thanks & Regards,
    Rishit

  • How to add Currency Unit in InfoCube definition?

    Hello Gurus,
    How do I add a newly created Currency Unit (ex: ZCURR) to the Unit Dimension of my InfoCube?
    I created this Unit in NotAssignedNodes InfoArea, but when I open this InfoArea to drag & drop the Unit, I see a blank InfoArea.
    Pls help.
    POINTS WILL DEF BE AWARDED!!
    Thanks,
    SD

    Hi Sebastian,
    I dont think we can expect a unit to be stored in UNIT fixed dimension unless it comes along with a keyfigure.
    UNIT dimension is to store the unit characteristic, which is present in the cube, becasue we have used a keyfigure which has unit along with it, like Amount or quantity data type key figures.
    When we define a key figure with data type as Quantity, it will ask us to mention either Unit object or a fixed unit. Here we need to mention the unit created by you.
    If we have added any unit characteristic in the char tab of cube defintion, then we have ensure to place them in a custom dimension.
    Hope this is clear.
    Naveen.A

  • How to add currency converter icon to toolbar

    Does firefox 5 have an icon for currency converter? How do I add a currency converter to a toolbar?

    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 add Currency field with dropdown on screen layout (module pool)

    I need to add a field called <b>Currency( field label )</b> with <b>dropdown (like SKB1-WAERS). </b>
    The <b>field label</b> and <b>input output field </b> should default as being hidden and
    sould be visible only when other field value ( on the same screen ) should match with the value in the database table . 
    Could you please suggest me how to create dropdown
    and give this functionality with coding ?
    Thanks in advance.

    Hi,
    In the field attributes of the SKB1-WAERS..in the group attributes..give a group name G1..Add the same G1 for the field lable also.
    Then in the PBO of the screen..
    ***Check the conditions..when other field value (on the same screen) matches
    ***with the value in the database table.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'G1'.
        SCREEN-INPUT = '0'.
        SCREEN-INVISIBLE = '1'.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Thanks,
    Naren

  • How to add -ve sign or +ve sign before an interger value

    I have 18000 but i want to get -18000 or +18000 in output according to some condition.
    how would i get it.
    points will awarded
    help me out

    Hi,
    Try the below mentioned code:
    Integers cannot be concatenated with sign. So only Strings, chanacters or numbers types of variables should be used.
    DATA: v_int     TYPE i.
    DATA: v_num     TYPE string.
    DATA: v_sign    TYPE c VALUE '-'.
    v_int = 18000.
    IF condition.
    v_num = v_int.
    CONCATENATE v_sign v_num INTO v_num.
    condense v_num.
    WRITE:/ v_num.
    endif.
    Reward points if helpful answer.
    Ashvender

  • How to add document signing to CUPS-PDF Printer?

    I am seeking a solution to digitally mass-sign PDF Documents. I'd prefer a way to add this into a CUPS-PDF Printer so I can use a shared queue on the server. Anything without a GUI is welcome. Adobe Acrobat is way to expensive for this and can not be automated at all.
    Any suggestion is welcome. I sadly couldn't find an appropriate solution here or via Google.
    Best Regards
    MacLemon

    I am quite Apache savvy, having my own tipi. So the config is not the problem. I just don't know where to start with a CUPS filter to add this.
    I have started a thread at the CUPS.org Fora and hope to find some info there.
    MacLemon

  • How to add a dollar sign $ to a formatted currency field

    Any idea how to add a $ sign to a formatted field?

    Hi Kim,
    Right click on the field and click on Format Field.
    In the !Format event type: $@_$_.
    This should place a $ before your output value.
    James.

  • How to Add a parameter of currency exchange rate in the selection screen

    Dear Friends,
    How to Add a parameter of currency exchange rate in the selection screen with format (9999.99999). wich field i need to take.
    Thanks,
    Sridhar

    TCURR-UKURS.
    ~Suresh

  • How to Add a new Currency in HFM Data form and grid (Rates)

    Hi Gurus,
    Am very new to this forum.
    Can someone explain me how to add a new currency to the existing data for or grid in the Workspace.
    Regards,
    Vinod

    Hi Sandeep,
    To add a new currency in Metadata, just add in Currencies dimension, and to add in Data form-just send the script what you are using as of now for rest of the currencies, or follow the same steps as specified above. or just add the script A#CLORATE.w#Periodic.C2#XYZ in rows of your data form (where XYZ- is the new currency).
    To add a new location in FDM login to FDM web client- click on Metadata--> locations and select the Controls review location where you want to add the data load location, right click and add the new location.

  • How to add new currency in ORCO and ORBO

    Hi, I have successfully install ORCO, ORBO and ORPOS. I followed Implementation Guide, Volume 1 – Implementation Solutions to add new currency in ORPOS.
    But I still do not know how to add new currency in CO and BO.
    I try to use import parameter feature in ORCO and ORBO to import xml, the result said "Success" but there is no changes.
    Please help show how I could achieve this.

    I change the FL_CNY_BASE into 1 already. POS is OK now. But BO is not regconize that there is a new currency. I'm trying to go to
    Admin -> Job Manager -> Available Import -> Import BackOffice Parameters
    and try to import xml file that contain belowing content.
    <?xml version="1.0" encoding="UTF-8" ?>
    <CurrencyImport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CurrencyImport.xsd" Priority="0" FillType="FullIncremental" Version="1.0" Batch="1" CreationDate="2001-12-17T09:30:47.0Z" ExpirationDate="2027-12-17T09:30:47.0Z">
    <!-- Example of adding a Currency. -->
    <Currency ChangeType="ADD" ISOCode="MYR" IssuingCountryCode="MY" Name="MYR" IssuingCountryNationality="Malaysian" IsBaseCurrency="true" Scale="2" Priority="0" />
    <ExchangeRate ChangeType="ADD" CurrencyCode="MYR" MinimumAmount="0.00" EffectiveDate="2008-05-26" ExpirationDate="2050-06-02" ToBuyAmount="2" ToSellAmount="2" ServiceFeeAmount="0.00" />
    </CurrencyImport>
    The result said it success but I still cannot see any change.
    Is there is any other things I should make change at BO? Any property file that I should make change? BO and CO is web application so the structure of files are not the same as POS. I can't following the same thing when I had made with POS for BO and CO.
    Thanks for you helping

  • How to Currency Sign

    How can I change the currency sign in report like from dollar to pound sign. Any help and advice will be highly appreciated.

    You'd better to post this thread to Reports forum....
    Reports
    My greetings,
    Simon

  • How to add a picture in Background of Sing in and Sign out Screen

    Hi MOSC,
    How do i add a picture in the background of Sing in and sign out screen in HCM People Soft 9.2 and People Tools 8.53.
    Also, how do i get rid of the Language are from the sign on page.
    thanks,
    Response will be greatly appreciated!
    User 501241

    Ha, I lost the reply I had typed up and I see Jim replied while I was writing it.
    In addition to his comments about changing the file.  It's actually signin not signon.html. Jim has the right path though. signon.html is the file that redirects the client to URL=../psp/ps/?cmd=login command which displays signin.html.  It's at /home/psadm2/psft/pt/8.53/webserv/peoplesoft/applications/peoplesoft/PORTAL.war/ps/signon.html. 
    I also gave two blog posts on the topic.
    Creating a Custom PeopleSoft Sign On Page - Remote PSAdmin and Hide the ‘Windows 7 is not supported’ message | The PeopleSoft Tipster Blog
    The first tells you how to add the background in the comments.  The latter discusses customizing the file for other reasons and gives some additional info.
    Oh, I also mentioned that the languages are all in a td tag with the class name of pslanguageframe.  Which may help you find it, because if I remember the language codes use JSP variables.  Just edit the table structure as you like and aligning it to your liking.

  • How to ADD reference table and make a field as currency field in dictionary

    pls render some info on how to add refernce table and ref field if i want to make an added field as a currency or quantity field...

    Hi Kiran,
    It sounds like you are creating a "Z" table or structure and have defined a quantity (eg MENGE). But when you run the syntax check, the system is saying you need to define a reference table / field.
    Well when you are in SE11, click on the "Currency / Quantity Fields" tab. You will see 2 columns called "Reference Table" and "Reference Field". These 2 columns define the unit of measure for the currency / qty.
    If you have defined in your table MENGE and MEINS and the MEINS field is the unit of measure for the MENGE field you should define your fields as such (inthe Currency/Quantity Fields" tab:
    Table - ZVBAP
    MENGE MENGE_D QUAN ZVBAP MEINS
    MEINS MEINS   UNIT
    Hope this makes sense.
    Cheers,
    Pat.
    PS. Kindly assign Reward Points to the posts you find helpful.

Maybe you are looking for