Decimal digits in Qunatity

Hi Experts,
We are in Gold ornaments retail business.
1. The quantity of items decimal units required is 3, say, 8.599 gms. The decimal units in gneral settings of item quantity was set as 4, and the reports also was generated. If now to change from 4 digits to 3, is it possible?
2. Is it required to create new data base and start afresh, to change the 4 decimals to 3 decimals?
Please clarify.
T&R
chandra

Dear Chandra,
U cannot come down on the no of decimal places, but u can only increase. So i suggest u to create a new DB.
Vasu Natari.

Similar Messages

  • 15 int digits and 3 decimal digits number problem in CR for VS 2005

    Post Author: condeagustin
    CA Forum: Crystal Reports
    HiIm using the Crystal Reports that comes with VS 2005 and I'm having a problem showing a number with 15 int digits and 3 decimal digits. In my tests, for example I have a formula that only has this line of code:  356125478123456.251I want the report to show  356,125,478,123,456.251 but it shows  356,125,478,123,456.000Why does CR puts 000 when it has to be a 251!!! WHY?!!!! I have tried to put the number as a string and I have tried a lot of functions like Round, Truncate, ToText, CDbl, etc and it's always the same result. In the format object of that formula the decimals are 1.000 and the rounding is 0.001. And the following is the weirdest part:If, instead of 356125478123456.251 I put 56125478123456.251, CR shows 56,125,478,123,456.300If then I put  6125478123456.251 CR shows 6,125,478,123,456.250And then if I put 125478123456.251 CR SUCCESFULLY shows 125,478,123,456.251 That is the way I want it but with 15 int digits. It looks like CR only works with a maximum of 12 int digits, more than that, the decimals don't work. How can I fix this? Please help me!Kind regards,Agustín Conde 

    Post Author: Ken Wong
    CA Forum: Crystal Reports
    Hi Agustin,
    Crystal Reports uses signed doubles as its datatype for numbers.  A signed double on a 32 bit machine is represented by 8 bytes.  1 sign bit, 11 exponent bit, and 52 bit for the mantissa. This roughly corresponds to 15 digits of total precision in decimal; ie. it does not matter where your dot is. You have 15 digits before and after the decimal point combined.
    This behavior is pretty standard.  You should see similar behavior in applications such as excel.
    Hope this helps,
    Ken

  • Type "CURR - Currency field, stored as DEC" only contains 2 decimal digits?

    We have a KF which has a data type of "CURR - Currency field, stored as DEC" mapped to a R3 field with 3 decimal digits, but "CURR - Currency field, stored as DEC" data type in BW/BI takes up only 2 decimal digits that the last digit of R3 field value is ignored.
    Any idea for a workaround?
    Thanks!

    Go to RSA1 - and go to the key figure info object and change the properties.
    Ravi Thothadri

  • Formula Variable decimal digits precision

    Hi All,
    I am using a formual variable checked for cumulated and digits to be 0.00. But with report output displays, decimal places upto 7 digits.
    When I uncheck cumulated, it displays properly with two decimal digits.
    Can you please throw some light on how to bring 2 decimal digit precision with checked for cumulated ?
    Thanks,
    Sri Arun Prian

    Hi Arun,
    As suggested by Akhan,Click on the KF and go to the display of KF and make the Decimals as 0.00.
    Rgds
    SVU

  • Fluke 8508a cut decimal digits

    Hello everyone,
    i have problem with data read on fluke 8508a. I have installed fluke drivers, visa 3.2 driver on labview 2009. When reading data from fluke multimeter it cuts decimal digits off. For example if i have 10.225V on multimeter it shows me just 10V on labview VI.
    Thanks in advance,
    Nedeljko!

    Hi ahem,
    change your computer to use the point as decimal separator and everything should be fine!
    Most instrument drivers expect "English" regional settings using the point as decimal separator while not checking for it.
    All measurement devices use the point. When your computer doesn't use the point, but a comma instead you have to change either your computer settings or the instrument driver…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Reducing decimal digits

    Hi Experts!!
    I have simple doubt.
    I have a variable having 4 digits after decimals..
    I want it to store it  in a variable with 2 decimal digits only.
    How can I do this without much numerical manipulation.
    Thanks in advance..
    Prabhas

    Hi,
    declare a variable
    data temp type p decimals 2.
    temp = variable "(ur var with 4 deci places).
    write temp.
    rounding ll also be done automatically
    Cheers,
    Will.

  • I am trying to only display at most two decimal digits.

    I am writtng a java app that computes an energy bill, but the computations are only supposed to display two decimals digits at the most.
    here is my code, I am trying to find a way to only display the two digits after the decimal in the answer (print statement). I was thinking that I could use a string method or something.
    import java.util.Scanner;
    public class EnergyCost
    public static void main(String[] args)
    final double UsageRate = 0.0942;
    final double PowerRate = 0.0075;
    final double FuelFactor = 0.0001403;
    final double TaxRate = 0.082;
    int KiloHour;
    double EnergyCharge, PowerCost, FuelAdjust, TaxCharge, Total;
    Scanner scan = new Scanner(System.in);
    System.out.println("Hello! My name is David and I will be helping you today!"); /*Done for aesthetics*/
    System.out.println("Please enter the umber of kilowatt-hours used last month: ");
    KiloHour = scan.nextInt();
    EnergyCharge = KiloHour * UsageRate; /*Calculates the energy charge*/
    PowerCost = KiloHour * PowerRate; /*Calculates the power supply cost*/
    FuelAdjust = KiloHour * FuelFactor; /*Calcuates the fuel factor adjustement*/
    TaxCharge = ((EnergyCharge + PowerCost) -(FuelAdjust)) * ( TaxRate); /*Calculates the Dollar amount of tax*/
    Total= ((EnergyCharge + PowerCost) -(FuelAdjust)) + (TaxCharge); /*Calculates the total eneergy cost*/
    System.out.println("The Energy Charge is " + EnergyCharge);
    System.out.println("The Total Energy Charges is " + Total);
    }

    > System.out.println("Hello! My name is David and
    I will be helping you today!"); /*Done for
    aesthetics*/
    EnergyCharge = KiloHour * UsageRate; /*Calculates the
    energy charge*/
    PowerCost = KiloHour * PowerRate; /*Calculates the
    power supply cost*/
    FuelAdjust = KiloHour * FuelFactor; /*Calcuates the
    fuel factor adjustement*/
    Do you think these comments add anything to your
    code? Also; by convention, variable names should
    start with lower-case letters.
    I was told that comments are a good thing, and that I should get the habbit to comment as much as possible. It is also a major part of our grade. I was not aware the variable convention. You will have to excuse me but I am just starting. Thank you for letting me know that though.

  • Fixed decimal digits using to_number

    Hi,
    I have few values in table like 10.3, 20.10, 30.37,40. But I need to select always with 2 decimal points. can anyone help me to achieve this?
    i.e I want the values to be retrieved as
    10.30
    20.10
    30.37
    40.00
    Thanks in advance

    Hi,
    If your number are actually strings then try:
    MHO%xe> with t as ( -- generating sample data:
      2  select '10.3' col from dual union all
      3  select '20.10' from dual union all
      4  select '30.37' from dual union all
      5  select '40.' from dual
      6  )
      7  --
      8  -- actual query:
      9  --
    10  select to_char(to_number(col), '99D00')
    11  from   t;
    TO_CHA
    10.30
    20.10
    30.37
    40.00else try:
    select to_char(col, '99D00')
    from   t;See:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10592/functions199.htm#SQLRF06130

  • Decimal digits in payment

    Dear all,
    My client wants when the invoice comes for the payment, if it shows like this 1507.68, he wants to pay 1508.
    At the time of payment, can we put 1508?
    If we put like that, it is going to rounding off difference account.
    Is there any other method to meet this requirement?
    Thanks & Regards,
    AR

    Use rounding rule.

  • 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

  • In ML81N, Quantity Field allows maximum 3 digits after the decimal.

    Hi Everyone!
            Hope things are going good.
            In SES, ML81N, The Vendor has a total invoiced value of $9033.5 .
            The Gross Price of the Product is USD 13,333.33
            The Quantity entered is                        .667 or .668.
             Both of the quanities entered  gives a value which is $6 more or less.
            The only way to arrive at $9033.5 is to use quantity .6675 and the Quantity field does not allow the entry of more than 3 decimal digits.

    Dont change the domain, as this has a huge impact on your system. At least talk to SAP before you are doing that.
    I am just the opinion that you have a wrong unit of measure for your material.
    You did not say what unit you use, but if it is KG, then you better use Gram to meet your requirement.

  • Decimal after two digit in RTF

    HI,
    i want to print decimal after two digit i.e., 44 must be changed to 44.00 in .rtf
    I am able to print decimal after three and four digit i.e., 524 --> 524.00 , 6456 -->6456.00
    I am using 0.00 format from BI PUBLISHER PROPERTY but not able to get decimal after two digit.
    I want output like this :
    4 -->4.00
    44 --> 44.00
    444 --> 444.00
    4444 --> 4,444.00
    Note : Output is in Excel
    I hope u got my point.
    please suggest me solution for this.
    Edited by: 914936 on Apr 12, 2012 4:06 AM
    Edited by: 914936 on Apr 12, 2012 5:33 AM

    Your requirement is to get two decimal digits for all the numbers right?
    This should be possible if you goto the field which you want to have two decimal digits .Right click and goto BIP properties. Here in the properties tab you should see the option to format .Select type as number and choose the necessary format.

  • Decimal Places in Pivot table

    Hi Gurus,
    When I create a pivot table with a measure and I choose "Show Data as ...
    percent of something (for example section) I get the result with 1 Decimal Place.
    How to modify it for 2 or more Decimal Places?
    Thanks
    Laszlo

    Hi Laszlo!
    We have found and discussed the answer already, but to more people can see it I write it.
    When You have the results already, You can use the 'Advanced' page to see the XML source. There you can modify the code carefully. Change the section:
    <saw:dataFormat xsi:type="saw:percent" minDigits="2" maxDigits="2" scale="2"/>
    Change maxDigits to the number of decimal digits You wanted.
    Although we found the answer on the course, I found later this page - also could help:
    http://blog.trivadis.com/blogs/andreasnobbmann/archive/2008/07/15/quot-percent-of-quot-in-obiee-s-pivot-tables.aspx
    Best regards,
    Tamas

  • Largest number of digits for NUMBER datatype?

    What is the largest length of a NUMBER that Oracle will "support"?
    The documentation says the following:
         Datatype Limits indicates:
             "Can be represented to full 38-digit precision"
         NUMBER Data Types indicates:
              "Oracle guarantees the portability of numbers with precision of up to 20 base-100 digits, which is equivalent to 39 or 40 decimal digits depending on the position of the decimal point."
    I realize if I define a column as simply NUMBER, I can insert numbers with a size up to 126 digits.  However, Oracle seems to only maintain the first 40 digits IN MOST cases.  The most number of digits it seems to allow is 40 before it starts to replace with 0's.
    With numbers that have more than 40 digits, Oracle will sometimes replace any numbers after the 38th digit with a 0 and other times will replace with 0 after the 39th or 40th digit.
    Therefore, what is the most number of digits we can have confidence in Oracle storing safely?
    This was the code I used for testing this process.
    create table max_num (num number);
    declare
      l_x number;
    begin
      for x in 1..200
      loop
        l_x := x;
        insert into max_num values (rpad(1, x, 1));
      end loop;
      exception
      when others then
        dbms_output.put_line('STOP: '||l_x);
        dbms_output.put_line(sqlerrm);
    end;
    select num, length(replace(num, 0)) from max_num;

    Hi,
    user109389 wrote:
    What is the largest length of a NUMBER that Oracle will "support"?
    The documentation says the following:
         Datatype Limits indicates:
             "Can be represented to full 38-digit precision"
         NUMBER Data Types indicates:
              "Oracle guarantees the portability of numbers with precision of up to 20 base-100 digits, which is equivalent to 39 or 40 decimal digits depending on the position of the decimal point."
    I realize if I define a column as simply NUMBER, I can insert numbers with a size up to 126 digits.  However, Oracle seems to only maintain the first 40 digits IN MOST cases.  The most number of digits it seems to allow is 40 before it starts to replace with 0's.
    With numbers that have more than 40 digits, Oracle will sometimes replace any numbers after the 38th digit with a 0 and other times will replace with 0 after the 39th or 40th digit.
    Therefore, what is the most number of digits we can have confidence in Oracle storing safely?...
    If the documentation says 38, then I'll say 38, too.
    If you put in a number greater than or equal to 1E39, then Oracle may round it to 38 significant digits; that is, the last digits you entered may get turned to 0's, or rounded up.

  • To Remove decimal digit in number field

    Hi experts
    any one can tell me the function in Crystal Report for removing decimal digits in a number type field. like field value is 34.00 should be 34.
    Regards
    Gorge

    Hi,
    use "round(value,dec places)" formula that is there in  functions in crystal report.
    Rgds,
    Premraj

Maybe you are looking for

  • How to upload a file into specified location

    Hi Frndz.. How to upload a file using File upload feature in web dynpro into our specified location(usr/sap/Images/....),not into  workspace r default path in server. Thanks in Advance Regards Rajesh

  • PO error in process

    Hi Experts, Need your inputs on issue below: we have some cases where PO errors out due to below backend application error: -enter quantity,percentage or value for account assignment -enter g/l account I have checked with the account assignment detai

  • One step Playlist creation on import

    I am a classical music person. I recently bought the 155 CD collection of Bach's collected works. I am in the process of loading the 155 CD's into iTunes. Is there a way to create an "instant playlist" of each CD. The CD's are organised into differen

  • Signed applets load slower than javascript

    I have a signed applet and i had problems with certifications but i solved them. Now i have a new problem with the chat , it�s when the page is load, javascript tries to get some variables from the applet but it has�n load jet and javascript stops. I

  • My Ipod screen is in an xray  mode not sure how it became that way or how to change it back.

    My IPod is constatly in an xray apperance I don't know how it got that way or how to get it changed back to regular screen.