Showing negative values in parentheses

Hi Gurus,
As per clients request, I am trying to display negative values in parentheses.
I have editable input text field showing margin.
If the margin is negative value, then it is display in parentheses with dollar sign($).
my code is as below:
<af:inputText value="#{bindings.margin.inputValue}"
label="#{bindings.margin.hints.label}"
<af:convertNumber type="currency"/>
</af:inputText>
However, margin may be in other currency.
I want to get rid of the $ sign.
Please help how to hide $ sign.
Thanks
Nag

Hi,
if you know the currency, then you can EL in trinidad-config.xml to switch the currency formatting accordingly.
http://download.oracle.com/docs/cd/E17904_01/web.1111/b31973/ap_config.htm#sthref2825
Of course, this would not change it on a per row basis in a table.
Other options are as explained in the convertNumber tag doc
http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e12419/tagdoc/af_convertNumber.html
You could provide a code format pattern in which case the currency icon is not added. Or, you could provide a pattern and have it formatted as a number, not currency
Frank

Similar Messages

  • Show negative values as 0 in BEx Report

    Hi Gurus,
    I have a report which shows negative values for POs in BW BEx. The user wants all negative values to show up as 0 in the report. Is there a way I can show that as 0 in the report  for all negative numbers easily.
    Any help is deeply appreciated.
    Thanks.

    Hi,
    Make a new formula and write a simple condition like this.
    (PO value<=0)*0+(PO value>0)*PO value
    Make sure to use boolean operators while writing this condition.If any issues get back to me.
    Hope it helps.
    Regards,
    AL

  • In Balance sheet profit period A/c show negative value

    Dear All
    Pls. Inform me what is the reason in my balance sheet for june 2011 profit period  account show negative value. and also beginning of year(INR) and Current Period(INR) of amounts for profit & loss Account is different. pls. suggest me
    Thanks

    Hi Rashmi.......
    I would suggest you to again go for Financial Report Template for new template of P&L.
    Then try to run. If same thing happens then please check Company Details where in Basic Initialization first option of credit balance is tick or unticked?
    It should be ticked........
    Regards,
    Rahul

  • How to show negative value in Pie Chart from Webi?

    I have below example data, I want to convert this to a pie chart in Web Intelligence, my problem is after I convert it to a pie chart, the revenue '-30' is shown as '30', looks like the pie chart is not suppor the negative value to show, I want to know if there is any workaround or solution to make the pie chart to show the negative value? Is this behavior is by design? do we have any official document to explain this?
    The product I used is BOE XI 3.1 SP3.
    Department    Revenue
    A                      100
    B                       -30
    C                        80
    Edited by: Alex Wang on Jul 13, 2010 5:51 PM

    Why are you showing this information as a pie chart? It doesn't make sense to try and display a negative slice in a pie chart. I can't really think of a logical way to try and draw a negative slice in a pie chart. With a pie chart you will need all your information to either all be positive or all negative, otherwise it doesn't work.
    What you need is to have a bar chart, with positive and negative values on the y axis.

  • Chart / graph won't show negative values (Keynote '08)

    Hi, I have a range of values from -100 to +100. When I edit the source data accordingly, the line only shows value from 0 upwards. all negative values are shown as Zero 0. problem occurs in numbers too, and also carries over to an export.
    Am I missing something? This is getting a bit urgent, and I do hope that I don't have to blame my mac for the delay - it would be less embarrassing if it was my ignorance.
    Ian

    Keynote and Numbers are definitely able to graph negative numbers, and given that both of them are showing this problem for you, I'd suggest re-installing the iWork suite.

  • Problem with Offset account showing Negative Values

    Hi,
    In our system, Offset account is showing Negative amount. We want to ZERO this.
    This account have Price Diff. amount....Now how can do the same...
    Please guide..

    Hi,
    Using F-02 you can transfer the balance.
    e.g.
    Dr Offsetting account
    Cr Price difference/XXXX account
    Rgds
    Murali. N

  • In PO taxes value are showing negative

    Dear all,
    I am facing problem that in some po of the same material showing negative value when we see in taxes of invoice tab. Please guide why this is so...

    Hi,
    Please open condition from M/06 and check option Plus/minus ,it should be A-Possitive as per your requirement.
    Also check tax procedure in which the value of tax condition is maitained , change above setting and then provide new value for tax condition in +ve value.
    Hope this will resolve your issue.
    Regards,
    Sandesh Sawant

  • Inventory cube - non cumulativekey fig values are showing -ve values

    Hi Guru's,
             For Improving the performance of inventory cube *0IC_C03
    The following steps i did:
    1) Created History cube by taking a copy of actual cube (0IC_C03).
    2) Transferred all the four years of data (2007, 2008, 2009, 2010) to history cube(4 yr data) as a back up to do clustering and for cube remodelling.
    3) After doing all these, loaded the current 3 years (2008, 2009, 2010)data back to the actual cube and kept one year data in the history cube (2007) (i.e maintained only recent 3yrs data in actual cube).
    5) Created a multiprovider includes actual and history cubes and populated the existing report on top of the multiprovider.
    6) After purging one year data from the actual cube, stock values in the reports are showing negative values
    7) To clear that issue i loaded the 2007 year data back to the actual cube (now the cube has all years data as it was before) to avoid the negative stock value, but again stock values are showing negative values.
    How to solve this issues in inventory cube..
    how too eliminate the negative value in reports which was working prperly before data purging( removing the first year data from the actual cube)

    Hi prayog.. 10q for answering... Yeah i went 2 the data targets. And the forumlae is already wrriten like this IF( Debit/Credit = 'H', Qty in OUn, ( 1- * Qty in OUn ) ) for Actual Consum. K.F and IF( Debit/Credit = 'H', Amt. in local curr., ( 1- * Amt. in local curr. ) ) for Amount.....
    So i already said that from one of the infosource the data is flowing through ODS and then 2 CUBE. So i checked out the data in ODS with the movement type and posting date as per in the Report.. I selected the 'Debit/Credit' = H and Movement type and Posting date... But in ODS o/p the keyfig's are not displayed..... This is the problem...
    Cheers,
    Hemanth Aluri...

  • Select returns negative values for unsigned datatypes in MySQL DB

    Hi, I have a table in a MySQL database where some fields are declared as "unsigned".
    Example:
    CREATE TABLE countries (
    Country_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    Number SMALLINT UNSIGNED NOT NULL
    My problem is when inside a .xsql file, I try to do a select:
    <xsql:query>
    select Number from countries where Country_id="15"
    </xsql:query>
    If inside the Database, Number always goes from 0 to 65535 (UNSIGNED SMALLINT),
    the resulting XML of that query will always show negative values if Number is
    bigger than 32767 (so it ignores the "UNSIGNED").
    Have you seen something like this before? Do you kwno what I'm doing wrong or what
    can I do to retrieve the values unsigned?
    Thanks a lot!
    David

    hi muneer
    >
    We are facing a strange issue in our R12.1.3 Ebiz instance (DB 11.2.0.1) - Solaris Sparc 64 bit - 2 node (1 node Apps, 1 node DB).
    Some of the purchase orders are having a negative purchase order number.
    SQL> select segment1 from PO_HEADERS_ALL where segment1 < '0';
    SEGMENT1
    -7951814
    -8960847please see
    Error: Purchase Order Creation Could Not Be Initiated, But PO Was Created With Negative PO Number And No Distributions [ID 789464.1]     To Bottom     
    PO Creation Process Failed In Sourcing And Creates Document With Negative Numbers [ID 1479616.1]
    Purchase Order Receipt FAQ (P4312) [ID 1306869.1]
    How it could happen. Any suggestions please !looks like a bug
    Can a Purchase Order (PO) Be Created With Negative Quantity or Price? [ID 241389.1]
    AppsMasti
    Sharing is caring

  • How to remove negative values for non-cumulative amount

    Hello
    I have a requirement from the user, wherein he needs to see the balance amount from credit and debit without calendar day being a factor. Hence, they do not need a bank passbook kind of scenario.
    I kept the balance amount aggregation as sum+last value. It works fine when I keep calendar day in rows. However, removing it shows negative value in the balance amount in case of just debit.
    They wish to see 30,000 on 07.12.2014 and 25,000 on 04.02.2015 in Non-cumulative key figure column. This works if I drag 0calday, but doesnt work in this scenario.
    Is it possible?

    Hi Yasemin
    Credit & Debit are inflow and outflow amount key figures. The user want the data somewhat like this:-
    GL Account No.
    Credit
    Debit
    Non Cumulative Balance
    1
    1000
    1000
    1
    500
    500
    1
    100
    400
    However, as of now, I get this data only when I keep 0calday in rows. If I remove it the data turns into this:-
    GL Account No.
    Credit
    Debit
    Non Cumulative Balance
    1
    1000
    1000
    1
    500
    -500
    1
    100
    -100
    I also tried suppressing result rows, yet it didnt work. This scenario is sort of like an account passbook debit and credit amount balance report, but they want that amount coming in without the 0calday row.

  • Negative Values of Library Cache Hit Ratio in AWR Report

    Hi all,
    We are getting Negative values of Library cache hit ratio in AWR Report of 11g(11.2.0.3) with Solaris[tm] OE (64-bit).
    Please suggest us why it shows negative value.
    Instance Efficiency Percentages (Target 100%)
    Buffer Nowait %: 99.87 Redo NoWait %: 99.99
    Buffer Hit %: 92.17 In-memory Sort %: 100.00
    Library Hit %: -3,321.23 Soft Parse %: 81.95
    Execute to Parse %: 92.88 Latch Hit %: 95.11
    Parse CPU to Parse Elapsd %: 87.25 % Non-Parse CPU: 81.39
    Regards,
    Madhan
    Edited by: user12078989 on Jul 25, 2012 7:40 AM

    Hi Aman,
    DB not restarted during this time.. we don't have production access. we will get awr report automatically from customer daily. also i am getting issue in our local environment v$rowcache view gets values is negative for dc_users and dc_tablespaces parameter may be it's related production issue...

  • Negative  values in red and Positive values in black CONDITIONAL FORMATTING

    Hi ... Everyone
    I have to show Negative values in red and Positive values in black in one of my report.
    i tried these conditions
    1. <?if:GAIN<0.00?><?attribute@inlines:color;'red'?><?end if?>
    but it shows negative values only in red ,positive values in black are missing
    2. <?if:GAIN<0.00?><?attribute@incontext:color;'red'?><?end if?><?if:GAIN>0.00?><?attribute@incontext:color;'black'?><?end if?>
    This gives the exact result what i wanted ...but the problem is i have five tables in my report ... so the above condition only allow changes in ONE TABLE ONLY. :(
    Plzzzz anyone who can help me to sort out my problem or else SUGGEST ANOTHER WORKING CONDITION
    Regards
    Subham Mittal

    Subham,
    This should not be difficult and moreover the BI Publisher Desktop installation comes with a set of examples:
    Start -> Programs -> BI Publisher Desktop -> Samples -> RTF Templates -> Advanced -> Conditional
    There you can find two templates with the exact same situation like yours, highlighting either the foreground color or background color.
    regards
    Jorge

  • Balance Sheet negative values

    Hi all,
    I've already implemented the IC 0FIGL_C10 and V10, and the business content queries that are available show negative values for equity and liabilities, but they are positive in the R3 balance and therefore the totals are not correct.
    Any idea about the reason of this ?
    Thanks!

    Hi Pablo,
    First of all, look at the cube content and check if balances have the same sign as in R/3.
    If no, then look at transformation in transfer and/or update rules.
    If yes, then look at the query definition.
    I see here:
    http://help.sap.com/saphelp_nw04/helpdata/en/49/026940c3c7bf49e10000000a1550b0/frameset.htm
    that Balanve is determined as 0DEBIT – 0CREDIT.
    Since in R/3 liabilities and equity are positive, then the formula above will give you negative amounts.
    You either change the query definition or revert the sign for liabilities and equity during a load into the cube.
    Though, there is a certain logic in SAP representation:
    assets are treated as positives while liabilities and equity as negatives.
    Best regards,
    Eugene
    Message was edited by: Eugene Khusainov
    Message was edited by: Eugene Khusainov

  • Displaying negative value while % calculation

    Hello Experts,
    I'm having issues with the following sceanario.
    There is one Percentage calculation column in report layout, but the result shows negative value even if Numerator & Denoinator having negative values. I'm using %A function and also NODIM.
    I'm using like nodim(-2) %A nodim(-1) and result gives -200% instead of 200%.....
    Please give me clarification to achieve the actual results.
    Regards,
    Navin Achanta

    Hi Navin,
    I hope you are working on BI 7.0. And this is a known issue from SAP and they have some notes to be applied for this to get the new %A functionality. What is happening here is, the denominator negative sign is not working and always it is taking an absolute value, i.e, only 1 in your case.
    Please check with your basis guys or SAP. One of my friend got this problem and that is why i come to know this solution. But, sorry for the providing the exact notes applied for this.
    Regards,
    Srinivas.

  • Why Negative values are entering in to fact table.

    Dear All,
    After Data File uploaded. The Fact table is showing Negative values.
    Can any body give solution.
    And in DataManager->Financial Process>FX Restatament (Is running Succussfully)
    But Currency is not getting translated.
    Please help.
    Thanks,
    Satish.

    The reason the values are negative may be caused by 2 items.  The first is the default method by which BPC store information; BPC is designed to store values based on the natural sign.  So, if a Revenue account is positive in the Data File, and the Property "ACCTTYPE" is INC, the value is stored as a negative number.  When an expense value is loaded to an account with "EXP", the value is stored as a positive.  LEQ are Negative and AST are positive. (CREDITS and DEBITS storage)
    BPC then uses tables and measures to report the account based on type correctly in the Excel interface. This is how  BPC is designed. 
    There is also the CREDITPOSITIVE = YES / NO that is part of the Data Transformation instructions, and if this is setup incorrectly, you may store the reverse signs from the data file that is loaded. So this may need to be reviewed as well.
    As for the FXTranslation, I assume you have rates in the RATE cube to use in the translation process. You will need to verify that the RATETYPE property is filled in for the accounts you wish to translate? DId you process the FX script logic and the RATE script logic prior to running FX.
    Hope this helps.
    Edited by: Petar Daniel on Dec 10, 2008 2:20 PM

Maybe you are looking for

  • Error while displaying file " C:Temp Filename.Ext cannot be created"

    Dear Friends Some users face problem while display the file. They get message " C:\Temp\ Filename.Ext cannot be created ". I checked Details. I got explaination as follows. Caution! You are not authorized to work with temporary storage Message no. ED

  • Wrt54gs all seems good cept internet light will not light or flash and no connection

    Got a WRT54GS router. # months old. I have it hooked up to comcast. This evening . I found no net when I turned on pc. I have comcast phone and net service. So My modem also handles phone calls aswell.  On my cable modem there is a link light with is

  • Installing oracle

    Hi all, i am new to linux environment. I am looking to install oracle 11g on linux platform. I use a mac book and i want to install linux in virtual machine and then want to install oracle 11g. I have tried CentOS, it installed properly but the requi

  • Do different recorded slide resolutions cause an imported FLV Video to Play incorrectly?

    I’ve been working on a project involving many captivate files with flv videos inserted into slides I made the slides in Photoshop, I had the same type of project last year with the same client and had similar problems with the flv videos just not run

  • Killed Disk Utility Erase Free Space. Now 0 available

    (I erroneously posted this earlier to the Safari forum; posting here again) I ran Disk Utility "Erase free space" on my iMac G5 250GB boot drive (I had about 130GB free). It ran for about 50 minutes, and got to "creating temp file" and then seemed to