Setting decimal point to "," instead of "."

Hello
Can any body tell me how to set format for numeric amount in order to have
Decimal point set to "," instead of "." and thousount separator set to
blank instead of comma in HTMLDB
thank

When you create an application, you can select the language of the application.
Select the language which uses the convention you want, e.g., French (France).
You can select the application language at:
Home > Application Builder, Select "Create"
Home > Create Applicaiton, Navigate Method > Name > Pages > Tabs > Shared Components > Attribute
Once the application is created, you can specify the number format on the number type column in each page. Select the one that uses group separator and decimal point, for example, 999G999G999G999G990D00.
You can specify the number format at:
Home > Application Builder> your application > Page Definition > Report Attributes > Column Attributes

Similar Messages

  • How to set Decimal Point position from right to left Serial Read Evaluate Number within Range over RS-232

    I am new to Labview, I am communicating with a TQ8800 Torque meter via RS-232. The 16 digit data stream is as follows:
    D15 D14 D13 D12 D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
    Each digit indicate the following status :
    D0 End Word
    D1 & D8 Display reading, D1 = LSD, D8 = MSD
    For example :
    If the display reading
    is 1234, then D8 to D1 is :00001234
    D9 Decimal Point(DP), position from right to the left
    0 = No DP, 1= 1 DP, 2 = 2 DP, 3 = 3 DP
    D10 Polarity
    0 = Positive 1 = Negative
    D11 & D12 Annunciator for Display
    Kg cm = 81 LB inch = 82 N cm = 83
    D13 1
    D14 4
    D15 Start Word
    I am using a modified version of the basic_serial_write_read.vi. I am attempting to parse the 16 digit data stream extracting out the number and whether it is positive or negative. I am having trouble with the decimal point placement. Is there an example that could help me with this? After the number is parsed I am then comparing it to see if it is within +/- 9.2 N cm. If it is then the test passes. I am outputing the data to a file. I have included the vi. Also how can I check for different units of the annunciator. Any help would be appreciated.  Thank you.
    Attachments:
    basic_serial_read.vi ‏100 KB

    What is the definition of the End Word?  You will likely need to figure this out experimentally (the manual doesn't seem to define it).  Whatever it is, you should set that as the termination character and enable the termination character.  That will help you in keeping your messages in sync.  Just tell the VISA Reads to read more than a message should be, something like 30 should work nicely.
    The error you are seeing is a buffer overload.  This means that the instrument is sending data to you faster than you can process it.  So you need to figure out how to perform the read faster.  File IO is slow.  So you should put that into a seperate loop so that your loop does nothing but read the data from the port as quickly as the data comes in.  Use a queue to send the data from the reading loop to the logging loop.  This is known as a Producer/Consumer.
    And here is a cleaned up version of your code.  No need for your express VI or the formula node.  Some other general cleaning up also done to make it easier to read.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    serial read.png ‏80 KB

  • Comma instead of decimal point

    Is there a global way to doubles and floats to use a comma instead of a decimal point (like we do in Europe) when output as a string? (as opposed to having to reformat each number individually every time I want to display it)

    Kramis wrote:
    Thanks. Writing code internally is no problem with a dot. Will the locale of my computer determine the string output style automatically?I'm not sure what exactly to change on your PC to make that happen, but yes, I believe you can do this. This varies on every OS, of course, but you should look into your OS's country- and/or location settings.
    Kramis wrote:
    ... but then I assume I have to use it every time I output to a string with each individual number.That is correct.
    Kramis wrote:
    ... I was hoping for a more global method.You could place the formatter(s) in a separate class and invoke them from there: no need to create new formatter(s) every time you want to display a number. But you will have to do yourFormatter.format(aDouble) every time though.

  • Setting number of decimal points using double

    Is it possible to set the number of decimal points
    e.g.
    double a = 2 * Math.random() - 1;
    If I print this it would show something like 0.2342345434332.
    What I want to do is show 0.234.
    Is this possible?

    here you go, you can run this small program to test the results for yourself...
    import java.text.DecimalFormat;
    public class floatTest{
         public static void main( String args[]){
    DecimalFormat threeDig =  new DecimalFormat("0.000");
          double a = 2 * Math.random() - 1;
          //If I print this it would show something like 0.2342345434332.
          System.out.println("double a >" + a);
    System.out.println("formatted>0.000 >" + threeDig.format(a)     );
         }//end of float
    }//end of floatTEstok?

  • Set No Decimal Point for Quantity in Any Stock Movement.

    Hi experts,
    Can anybody tell me how to block user from entering qty with decimal point in any stock movement that they plan to do. Our current system setting allowed user to do goods issue with decimal quantity such as 1.25 Unit.
    Regards.

    Hi Sujiana,
    If you dont want to decimals i think one option is availble is it correct or i dont know.why dont you try onece for this
    Go to logistics general ->Quantity optimizing and allowed logistics units of mesure->unit of measure rounding rule
    do here round to your unit
    i think it may be helpful to you
    Prem

  • Windows Service - While converting into decimal its takes comma instead of decimal point

    Hi,
    We are converting hex value into decimal in windows service application ,  its working fine in almost all PC's except one.
    When we are using same code/windows service in French PC, while converting hex value into decimal its going wrong ( Ex : 1256,8904 instead of 1256.8904 )  that's is instead of decimal point takes comma. We executed same code in sample win
    form on same PC its working fine.
    actual value is "1256.8904" but its converting into "1256,8904". Can you please give me some idea how to resolve this.
    Regards,
    Prabhu.R
    Prabhu.R

    Hi,
    This forum is for System Center Service Manager. I bet you will have better luck in getting an answer if you find a forum that suits your question better. :)
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden | My blog: www.scsm.se

  • How can I get the windows regional settigs such as Decimal point setting

    I have the problem that the Labview program I wrote uses the regional settings to format numbers to string. I know one can change this in 6.0 but I am using instrument drivers and the total library has 200 or more vi in it. I don't have the time to edit all of these. So I would like to check the regional settings and then inform the user that he/she may need to change this, or even that the program will remotly change these settings. Any ideas or example code ?

    Another way of reading it is through the registry. Just open a key:
    + Open Registry Key.vi
    + HKEY_CURRENT_USER or HKEY_USERS (root key)
    + Control Panel\International (subkey)
    + read key/write key (security access mask)
    Use 'read registry value simply' or 'write registry value simply' to read or
    to modify 'sDecimal'.
    And remember :
    + to be active in LV, you must restart LV!
    + you should change 'sThousand' also!
    + close the key!
    Regards,
    Wiebe.
    "AIR" wrote in message news:9sdsai$3h3$[email protected]..
    > Hi,
    >
    > One way is to check it:
    >
    > + use the function 'Number To Fractional String' (Sting>String/Number
    > Conversions>Number To Fractional String').
    >
    > + Wire 'True' constant to 'Use System Decimal Point'.
    >
    > + The Output sting will be 0.
    000000 or 0,000000, according to the regional
    > settings.
    >
    > LV updates this only at start, so if you change it in Windows, you have to
    > restart LV!
    >
    > Regards,
    >
    > Wiebe.
    >
    >
    >
    >
    > "jens" wrote in message
    > news:[email protected]..
    > > I have the problem that the Labview program I wrote uses the regional
    > > settings to format numbers to string. I know one can change this in
    > > 6.0 but I am using instrument drivers and the total library has 200 or
    > > more vi in it. I don't have the time to edit all of these. So I would
    > > like to check the regional settings and then inform the user that
    > > he/she may need to change this, or even that the program will remotly
    > > change these settings. Any ideas or example code ?
    >
    >

  • Comma and Decimal point

    Hi Gurus,
    I am encountering a problem regarding printout of our SOA
    Instead of the standard format of the total value (comma then decimal point (ex. 2,559.62)) output is (decimal point then comma(ex. 2.559,62)). This always happens to a particular customer only. What should I do?
    Regards,
    Jay

    Hi,
    The decimal notation of numbers in Visual Composer is based on the Locale as set in the Portal
    (User Administration -> select user (or group) -> Language)
    if language is not set, it's based on IE language, and afterwards on the OS language.
    therefore, setting a number field formatting to "LOCALE_NUM" or checking the "Local Format" checkbox in the field's formatting tab, will cause the runtime to format the number according to the above.
    Your customer is probably currently on a non US locale.
    Best Regards,

  • Currency Decimal Points - Urgent

    Hi,
    I am facing a serious problem with currency decimal points. Unfortunately "Currency code" has been deleted from where we can maintain currency decimal points in OY04 Tcode and the currency code was maintained by zero decimal places. Before deleting the Currency from decimal points the document currency was showing $1000.00 which is correct. But after deleting Currency Code from OY04 Tcode the same amount is showing $100000 by combining decimals.
    I have again given same Currency Code in same transaction code. But still it is showing ($100000) the amount by combing the decimals.
    Please help me
    Thanks
    Ravindra

    You said someone "unfortunately" deleted an entry from table TCURX.  Has that someone seen all the following WARNINGS given by SAP!!!
    In a productive system, you must not delete the currencies in use or change the decimal places.  This could make amounts in documents already posted incorrect or invalid.
    Before you continue, please read the following text carefully.  If you do not heed this note, you can cause irreparable damage to the system with this transacton.  In the R/3 System tables currency fields are stored as decimal figures with a variable number of decimal places. The decimal point is not stored in the field in the database. Instead, each currency field refers to a currency key field. In this transaction you assign the number of decimal places to this currency key uniquely.  Example: If you have set currency USD to have two decimal places and you post an amount of 100 USD, an amount of 10000 USD is stored in the currency field in the database. Not until this amount is processed further or is output does the system use the currency key from the reference field to determine the number of decimal places via this table. In this way the table content can be interpreted correctly for further processing or formatted for output with the correct punctuation.  If after posting you changed the number of decimal places for USD, for example, to 3, the existing field content of 10000 would be interpreted for futher processing or output as 10 USD (10.000). This would mean that the contents of tables across the system would, for all currency fields containing an amount in USD, be interpreted incorrectly by 10 per cent. To        
    change the number of decimal places for a currency already in use, you must convert all the tables in the R/3 System that contain
    currency fields, so that the data integrity remains. This cannot, however, for both organizational reasons and under the runtime aspect be carried out in a productive system.  The following changes to the TCURX table can thus lead to the loss of data integrity if you        
    make the changes in a productive system or transport them into a productive system:
    o Change to the number of decimal places of an existing currency                                   
    o Deletion of an entry from the TCURX table (corresponds to changing the decimal places to the standard value of two decimal places)           
    o Insertion of an entry in the TCURX (corresponds to changing the standard value of 2 decimal places to a different value), if this is a currency code that already exists Uncritical changes are any made to this table during the Customizing of a new installation or the insertion of TCURX even during operations, if the currency codes have just been entered in the TCURC table using transaction OY03, signifying that no postings to these currency codes can have been carried out yet.
    Do you want to change the decimal places despite all recommendations?

  • How do I Change decimal comma for decimal point

    Hello,
    I have an external USB keyboard and I don't know how do I change the decimal comma for the decimal point.
    I already set my region but anyway I can't change the decimal comma for the decimal point.
    thanks

    Thanks for the link, that help me a lot, because now when I'm in excel or a calculator I hit the point key on the numeric part of my keyboard and I get a point, but when I'm in word, safari or entourage and I hit the point key on the numeric part of my keyboard I get a comma instead a point.
    I have a windows Spanish ISO extended keyboard.
    Thanks a lot for your help

  • Purchase price to have 4 digits after decimal point

    Hi Friends,
    Would you please help me out with this issue?
    The purchase price needs to have 4 digits after the decimal point, because the product/component would be packed and sold in other unit, which may give huge value difference.
    The price can be set for the product/component per 100, but is there any setting in SAP Reference IMG?
    Thanks for your help.
    Regards,
    JT

    Hi,
    In material Master (MM01) which unit you maintain for that material. Go to MM02 and keep Base Unit of Measure as storing unit as earlier and maintain Sales unit (unit of measure in which the material is sold) or Order Unit (Specifies the unit of measure in which the material is ordered) in the Purchase Order according to your requirement and Enter the factor for converting the alternative unit to the base unit. In your case product/component would be packed in a Different unit.
    OR
    In your case product/component would be packed in a Different unit.
    Maintain the (BOM) Bill of Material for the finished product you are selling and its component.Create Finished Product as material type as FERT and Components as material type as HALB or ROH.
    Now try your transaction with Finished Product only and sale.
    Hope the above  will help.
    Regards,
    Biju K

  • OBIEE 11.1.1.6 - Requirement is to show 3 digits after the decimal point.

    Hi,
    I have a requirement to concat 2 columns ( 1st column is a text column and 2nd column is a numeric column set as double in RPD). For the 2nd column, user wants to see 3 decimal digits all the time.
    For example, if the value is 2.4567 then I need to show round off value 2.457 and if the value if 3.4 , then I need to show 3.400 and if the value is 4 then I need add decimal point and show 4.000.
    Please let me know how I can achieve using OBIEE application without having to go through RPD.
    Thanks
    Swarna
    Edited by: 934460 on May 15, 2012 12:48 PM

    Try the following:
    In this example:
    Column 1: Month Name
    Column 2: Revenue
    Column 3: Month - Revenue
    Formula for Month - Revenue column will be:
    Month Name ||' - '|| cast(round(Revenue, 3) as char)Hope it helps.
    Regards,
    Kalyan Chukkapalli
    http://123obi.com

  • Can't figure out how to solve the decimal point bug in this calculator code

    Hi guys, I'm new in flash and is currently learning how to build a simple calculator with multipliers (plus,minus,multiple,divide,decimal point and change sign) but I'm stuck on the decimal point and change sign.
    var multiplier_old:Number = 10;
    var multiplier_new:Number = 1;
    // .: Sets the multipliers so that new input numbers become decimals of a lower unit column
    action_point.addEventListener(MouseEvent.MOUSE_DOWN, function():void {
              multiplier_old = 1;
              multiplier_new = 0.1;
              point = true;
    // Takes intput from the input_ buttons and adds it to the input after applying the multipliers.
    // If `point` is true then the multiplier_new is divided by 10, also as described.
    function inputNumber(n:Number):void {
              input = input * multiplier_old + n * multiplier_new;
                        if (point) {
                                        multiplier_new *= 0.1;
                       trace(multiplier_new);
              output_txt.text = input.toString();
    Decimal point
    The problem is that when I input 2.7 in the calculator, it will display the values in output_txt correctly. But then when I input 2.78, it will display 2.780000000000000000000000002. This will also happen to other numbers if the input is too big.
    What I want is just 2.78. How do I change the codings to make 2.780000000000000000000000002 become 2.78?
    Change sign
    Any tips on how to start on this one?
    Thanks for your time,
    Zainu

    I think you misunderstand what I mean. The weird decimal doesnt comes out after I press the 'equals' sign. It comes out when im just pressing on the caculator number buttons
    First I click the no.2 button and then the decimal point button.
    So the caculation output display will show
    2.
    after that I press the no.7 button
    2.7
    and then no.8 button. It appears like
    2.7800000000000000002
    This is the code I use when the user press the decimal point button.
    // .: Sets the multipliers so that new input numbers become decimals of a lower unit column
    action_point.addEventListener(MouseEvent.MOUSE_DOWN, function():void {
              multiplier_old = 1;
              multiplier_new = 0.1;
              point = true;
    // Takes intput from the input_ buttons and adds it to the input after applying the multipliers in the method described above.
    // If `point` is true then the multiplier_new is divided by 10, also as described.
    function inputNumber(n:Number):void {
              input = input * multiplier_old + n * multiplier_new;
                        if (point) {
                                 trace(multiplier_new.toFixed(3));
                                  multiplier_new *= 0.1;
                                  //trace(multiplier_new);
              output_txt.text = input.toString();
    I think there is some code wrong in this function that makes this weird problem. I tried putting toFixed method but it's still not working.
    Sorry for this long reply but I have to try my bestto explain with my bad english.

  • In/out markers being set in the sequence instead of source clip

    Here's what's happening:
    1) I open a clip in the source monitor
    2) I set the in/out points of a subclip and drag it to the timeline, no problem
    3) I scroll around in the source monitor, finding a new clip
    4) I hit in/out and try to drag the clip from the source monitor
    5) The original clip is dragged over and I notice that the in/out points were set on my sequence instead of my source monitor.
    The issue seems to be that focus doesn't follow the mouse intuitively? The focused/highlighted window remains the sequence even if I'm actively scrolling around in the source monitor and even if I hit in/out keys while the cursor is in the source monitor window -- the only way I can get the source monitor to be the focus is if I explicitly click on it.
    I've only recently upgraded after some time over in FCP-land, but I feel as though this didn't seem to happen to me in previous versions of Premiere. Is there a preference or anything I can do to enable this to work? Many thanks in advance if anyone has ideas.
    I'm on OS X Mountain Lion.

    the only way I can get the source monitor to be the focus is if I explicitly click on it.
    That's normal.  If you want to keep focus on the Source Monitor, use the Insert or Overlay Edit commands instead of dragging.

  • PDF export to Excel the decimal point is not displayed in the amount

    When I export a pricelist from pdf to excel then the decimal point is not displayed in the amount. It does'n matter in which language I try
    Anyone kow why?
    So the tool doesn't work for me.

    I have no problem. What is your country setting for the decimal separator?
    Attachments:
    read from csv.png ‏18 KB

Maybe you are looking for