Number format for thousand

Hello,
I have an entity attribute of BigDecimal type having format type set to number.
Its format string is '# ##0.00' (to have the thousand character set to ' ' instead of ',') but on the rendering there is no space, on outputText or inputText. How can I have the desired render ?

This doesn't work :(
Here is (one of) my field:
        <af:outputFormatted id="of1"
                            value="#{backingBeanScope.MyBB.totalAmount}"
                            converter="javax.faces.BigDecimal"
                            rendered="true" inlineStyle="font-size:large;">
          <af:convertNumber type="number" pattern="# ##0.00"
                            groupingUsed="true" integerOnly="false"/>
        </af:outputFormatted>The bean function signature is:
public Float getTotalAmount()In the generated HTML page, the result is:
<span style="font-size: large;" id="pt1:r1:0:of1">18061,00 </span>

Similar Messages

  • Invalid number format for portnumber

    I am trying to install Oracle 10G Lite
    During this process it requires a password.
    Leaving the 1st line unchanged (system) I fill in the 2nd line "Manager" (Which is supposed to be the password)
    After this, I get the message
    i/o uitzondering: invalid number format for portnumber
    Who knows how I can correct this
    Thanks in advance
    Hein

    For repository information, if you have already Oracle 10g server installed and running database. Then you should supply system/password/1521/<sid> information to generate repository. Otherwise no reason to select repository from wizard
    Check this installation document for verify that your system are passing pre-requisite to install Lite.
    http://download.oracle.com/docs/cd/E12095_01/doc.10302/e12080/preinstall.htm#CBHBEDBC
    Oracle Database Lite Standalone using OC4J Standalone JDK 5.0
    Edited by: OrionNet on Dec 20, 2008 4:51 PM

  • How can I make lining number format for opentype fonts in Acrobat?

    How can I make lining number format for opentype fonts in Acrobat?

    I bought the Max OT font. I want the numbers on the right to look like on the left. I could do that in word, but not in adobe acrobat.

  • Which are the supported phone number formats for IPhone?

    Can anybody tell me which are the supported phone number formats for IPhone? or any link which will help me as I want to know exactly which phone numner formats are supported by iPhones? Thanks in advance

    Thanks for your quick reply. But I want to know like the below mentioned phone number formats, which other formats are supported by iPhone,
    1. +36 1 889 6600
    2. +421 33/591 79 11
    3. +39 035 322048
    4. +65 6336 3456
    5. +61 7 3027 8400
    6. +86 516-83265979
    Can you give some idea regarding this? thanks in advance.

  • How to set default number format for whole app

    Hi!
    I have a bunch of View Objects and I have to set the format for each attribute of type number. I've tried using
    MyAtt_FMT_FORMAT=#,##0.00
    MaAtt_FMT_FORMATTER=oracle.jbo.format.DefaultNumberFormatter
    on just a couple of attributes and it works OK. But since I have a lot of number fields across application in a lots of view objects, I would like to set this format as default for all the number fields in my application.
    Can I do that and if yes, how?
    Thanks

    you can use Domains.
    chapter 26 Advanced Entity Object Techniques in Developer’s Guide For Forms/4GL Developers
    Regards,

  • IPhone number formatting for Ireland and the UK now supported!

    I was pretty impressed to discover that the iPhone 2.2 update now supports telephone number formatting in Ireland and the UK.
    So, for example an Irish mobile number will be displayed as (086) XXX XXXX instead of just 086XXXXXXX. Seems to work flawlessly for any number I've tried, including special rate like freephone 1 800 etc.
    The same is now also true for the UK, it displays the numbers correctly formatted now too!
    It certainly makes things easier to read!

    vice versa in us

  • Serail number format for CS5 extended

    what is the format of the photoshop cs5 extended serial number?

    Hi ghbhimsud,
    See the document Find a serial number (http://helpx.adobe.com/x-productkb/global/find-serial-number.html) for information on locating the serial number.
    Thanks,
    Preran

  • Bank Account number format for new zealand country

    Hi Expert,
    Could you please help me out with the bank rules for New Zealand bank. I want to know how the Bank key, Bank Account number format will be.
    And also, what would i need to ask for vendor if i try to update the bank details in SAP.

    Hello, Shiva!
    You can check these links for New Zealand bank number formats:
    New Zealand bank account prefix - Wikipedia, the free encyclopedia
    http://www.enz.org/forum/showthread.php?t=7756
    http://www.newzealandbankcodes.com/
    Hope, this will help you!
    Best ragards,
    The Wirtschaftsmann!

  • Number Format for WBS Element

    I have found in our 0WBS_ELEMT master data two formats for the same WBS Element:
    P2123301000130020
    P.212330/100-013002-0
    I suspect the 2nd format to come from the Shopping Cart data load while in general the first format is used.
    Why is there this difference is the passing of this data and how can we 'unify' this?
    Regards,
    Eric

    Post Author: V361
    CA Forum: General
    is the field you are working with a date or a string.  If a string, you may need to write a formula to convert to a date, then use that formula in your chart.  Hopefully that will fix the legend

  • Number format for excel

    Hello,
    my problem is to convert my numbers into a correct excel format. the numbers are saved in a spreadsheet file and with an editor it looks like this:
    9,723197E+0
    8,229011E-1
    When I filled a Excel file with this data it looks like:
    9723,00 and 0,823.
    I tried different things to solve the problem but nothing helped.
    Can anyone help me?
    markus
    Solved!
    Go to Solution.

    Hello Markus,
    I have two things you could try - both helped for me. But I strongly recommand to make a Cope of the VI you will have to change, in case that you need the original functionality.
    1) Open ...\national instruments\LabVIEW 8.x\vi.lib\addons\_office\_excelsub.llb\Excel_Insert_Table.vi
    2) Delete the two property-nodes Range>>Value so that the VI looks like the attached screenshot "Excel I.jpg"
    3) You can additional place a "Frag/Exp string to number"-Function in the VI (see screenshot "Excel II.jpg")
    But I repeat, please make a copy of that VI and save it to a different folder before you make these changes.
    Regards
    Johannes
    Attachments:
    Excel I.jpg ‏70 KB
    Excel II.jpg ‏130 KB

  • Number format for shorthand money values

    Hi,
    How can I format currency values to shorthand?
    ie how can I display 12500 as 12.5, 2700 as 2.7, 700 as 0.7 etc?
    I have tried using various masks but can't achieve the results I'm looking for
    Thanks
    J

    This?
    with my_tab as (select 2700 col1 from dual union all
                    select 12500 col1 from dual union all
                    select 700 col1 from dual)
    -- end of mimicking your data; USE SQL below:
    select col1 / 1000
    from   my_tab;
    COL1/1000
           2.7
          12.5
            .7

  • How to change default number format for saved data in signalexpress

    I cannot find an option for determining format and precision of saved data. By default it is scientific with i think 3 siginificant numbers. How and where to do it?

    Stjepan, it sounds like you're right where I was 2 months ago! Glad to see I'm not the only one struggling w/ SE.
    Here's what I've had to do to control the precision of the data in my ascii file.
    Insert an Amplitudes and Levels step from Analysis>Time Domain Measurements.
    In the A&L settings, deselect Export RMA Value (keep Export DC Value selected).
    Now drag that DC signal from the A&L step into your data view (literally drag and drop this signal  onto the graph). From here you can configure the data view's properties to your likings, I.E, significant digits or digits of precision, floating point, etc.
    I've found that Floating Point,  2 Significant Digits, and uncheck Hide Trailing Zeros to work well (visually speaking).
    Insert your Save to ASCII step after the A&L step, and be sure to save your A&L's DC signal.
    The data will export exactly as it's shown in the display.
    TIP: you can rename your signals from any of the steps. This is handy because it's the renamed channel names that show up in your data headers (much more descriptive when you have multiple channels).
    My apologies if this is all information you already know... 
    Message Edited by OKors on 09-10-2009 10:27 AM
    SCXI- 1000 Chassis w/ 1346 adapter
    PCI 6281 DAQ card
    SCXI- 1520 Bridge Board w/ 1314 Terminal Block (x2)
    SCXI- 1180 Feedthrough Panel w/ 1302 Block
    Signal Express 2014.
    Win7 Enterprise

  • Number format for Indian Rupee

    Hi All,
    I am working on SAP B1 2007b.
    In crystal report I want amount to be printed as 1,51,20,300 but it prints as 15,120,300.
    Is there any solution for this.
    thanks & regards,
    sheetal

    Hi,
    Create this Function and call by Query-
    Create FUNCTION NumberFormate_IndianRupees(@monetary_value decimal(20,2) ) returns varchar(20)
    as
    begin
         declare @return_value varchar(20)
         declare @is_negative bit
         select @is_negative = case when @monetary_value<0 then 1 else 0 end
         if @is_negative = 1
              set @monetary_value = -1*@monetary_value
         set @return_value = convert(varchar, isnull(@monetary_value, 0))
         declare @before varchar(20), @after varchar(20)
         if charindex ('.', @return_value )>0
         begin
              set @after= substring(@return_value,  charindex ('.', @return_value ), len(@return_value))     
              set @before= substring(@return_value,1,  charindex ('.', @return_value )-1)     
         end
         else
         begin
              set @before = @return_value
              set @after=''
         end     
         declare @i int
         if len(@before)>3
         begin
              set @i = 3
              while @i>1 and @i < len(@before)
              begin
                   set @before = substring(@before,1,len(@before)-@i) + ',' + right(@before,@i)
                   set @i = @i + 3
              end
         end
         set @return_value = @before + @after
         if @is_negative = 1
              set @return_value = '-' + @return_value
         return @return_value
    end
    For Testing--
    select dbo.NumberFormate_IndianRupees (15120300.546)

  • Changing number format

    Hi ,
    I need to change number format . for example if its 1 lakh 1,00,000.56 (56 paise)  its displaying as
    1.00.000,56.
    how to convert it to 1,00,000.56

    System
           -->User Profile
                              -->own data
                                             -->Defaults tab
                                                                --> change decimal naotation accordingly.
    Or try using thousand seperator
    e.g. value(T)

  • Custom Number Format With Leading & Trailing Zeros

    Hi!
    How can I define following number format in Apple Pages (v3.5)?
    Positive numbers: +#'##0.00 (e.g. +0.30 or +5'000.00)
    Negative numbers: -#'##0.00 (e.g. -0.30 or -5'000.00)
    If I create a custom number format and enable Show Trailing Zeros, the leading zero is not shown (e.g. +.30 instead of +0.30). Number format with Thousands Separator enabled comes closest to what I need, but misses the plus sign for positive numbers (which I need to represent differences).
    Any ideas? Thanks in advance for your help!

    Hi Tuna,
    Maybe the currency format would work for you,
    The plus sign is problematic. With the above your negative numbers will be red and in brackets, positive numbers will be black. You could use conditional highlighting to change that.
    quinn

Maybe you are looking for

  • Please help with the URL class

    Hello, I am trying to write a Java app that will take a url and download it. I believe you can do this with the URL class but I don't understand how to. For example, if the http url location points to a picture file, how would I code the app to retri

  • Mail Form Question

    Hi Folks, I'm VERY new to Dreamweaver, have just created a Mail Form in PHP and have absolutely no idea what to do with it now. It's one of those typical forms with To:/Email:/Message: I know this is a painfully basic question but I can't seem to fin

  • How to redirect to portal iview from a stand alone webdynpro application

    Hello, I need to able to navigate from a standalone webdynpro application, for which I do not want to create Portal iview, to a Portal iview with some data. Please let me know how can I pass the string value and how to navigate. Thanks, Vinit

  • Issue related with the Date Format --- error when activating the DSO

    Hi Friends.. plz help me to fix the issue ...im getting when activating the DSO... Actually im not getting error when loading the data thru DTP..im facing this issue while activating the DSO.. is there any routine to solve this or i have to go for da

  • Apple TV displaying image in 256 colors

    I've set my AppleTV up to my 1080p LCD television via HDMI. The sound works perfectly and the image displays, but it is only showing 256 colors and the image is dithered - imagine saving a photograph as a GIF image and that's what the AppleTV display