Help required to change number of estimate weight decimal places

Does anyone know how to adjust the number of decimal places available in the Estimate Weight column?
It currently only has 1 decimal place.

1. Choose Project, WBS.
2. Click the Display Options bar, then choose Columns, Size.
3. In the Est Weight column, type a Weight for each element listed.

Similar Messages

  • How to format a number to a correct decimal places

    i wanted to format a number to a correct decimal places say for example
    666.105 t0 666.11 please any body help us

    whether to use NumberFormat or DecimalFormat can u give me example thanks

  • Changing Node Attributes to drop decimal places on MI 7.1 table UI Element

    I have been struggling with finding a way of dropping three decimal places on a QUAN data type for a Node attribute, so that the value can be displayed as an integer instead of with three decimal places displaying when outputted within the table UI element within our MI 7.1 Mobile Client application.
    I have adjusted the column width, which is not ideally what I am trying to achieve.  The decimal places for the value are not required and should therefore not be displayed and take-up additional space on the table template view.
    Does anyone know a slick way to remove the decimal places for a data object that is outputted to a table UI element within the NWDS java application?
    If the above is not possible, what is the best approach for making a change to a data object node structure of the SWCV?  Can the node attribute for the  Decimal value be changed directly, or are there other things that should be considered when making a change to a node attribute of the data object?
    I appreciate any advice in this area.
    Kind regards,
    Rose Orovec

    Hi
    Try to create your own value attribute ( with out decimals)  in the node and pass the actual value to this
    and finally show your value attribute( as a field ) on the screen
    Hope this works....
    Regards

  • CAT2 - Help required for changing data

    The requirement I have is, if the data is entered for a particular activity type in CAT2, and if it exceeds the default hours alloted for that week, the extra hours need to be split into different activity types.
    Say, this is the data entered: (Max of 35 Hrs per week as per IT0007) (Click on the link below to see sample data!)
    [http://img32.picoodle.com/img/img32/5/12/21/f_datam_9dfadb2.jpg]
    (The value for Thu is 5 and not 6 in the initial entry.)
    The data has to remain exact until it reaches 35 hours and then the extra hours need to be split and entered in a different activity type. (BU is also counted as regular working hours and value for BU is to remain same)
    I tried using the user-exit CATS0002 but since the user exit gets only the value of a single cell at a time, I am not able to process the data for my requirement. and this user exit is triggered only for the cells where the value is changed... if the data is already entered and the user changes some cell, I don't get the whole data entered and hence, I can't modify the already existing data on the timesheet.
    Has anyone coded for a similar scenario? Your help will be really appreciated.
    P.S: I am working on ECC 6.0

    Hi Nazim,
    There is an user-exit for validating the whole time sheet (I think it is  nr. 6, but I am not sure), in this one you could check all the hours, but I am not sure if it will suffice for your requirement.
    Regards,
    Martin

  • Help required in changing to str for dynamic sql

    Hi
    I am trying to make this to string for dynamic sql, this is a part of the sql which is giving problem with p_..as parameters from proc. Help me in this , iam also seeing dbms _output but stil unable to format it to required error free string.
    || ' AND ( po.abbreviationprojectopportid LIKE '
    || '%'
    || 'NVL'
    || '('
    || p_opp_code
    || ', ''NULL'')'
    || '%'
    || ' OR co.companyname LIKE '
    || '%'
    || 'NVL'
    || '('
    || p_client_name
    || ', '' NULL'')'
    || '%'
    || ' OR le.line_item_amount = NVL '
    || ' ('
    || p_booking_amt
    || ', -0.197) '
    || 'OR po.dealcurrency = NVL '
    || '('
    || p_currency
    || ',''NULL'')'
    || 'OR be.booking_entry_id LIKE '
    || '%'
    || 'NVL ('
    || p_entry_id
    || ',''NULL'')'
    || '%'
    || ' OR le.line_item_id LIKE '
    || '%'
    || 'NVL ('
    || p_line_item
    || ',''null'')'
    || '%'
    || ' OR be.ticket_num LIKE '
    || '%'
    || 'NVL ('
    || p_ticket_num
    || ',''NULL'')'
    || '%'
    || ' OR be.updatedby LIKE '
    || '%'
    || 'NVL ('
    || p_user_name
    || ',''NULL'')'
    || '%'
    || ' OR credittransaction.acct_code ='
    || 'NVL ('
    || p_gl_account
    || ','
    || '-0.197)'
    || 'OR debittransaction.acct_code ='
    || 'NVL ('
    || p_gl_account
    || ', '
    || '-0.197) '
    || 'OR credittransaction.profit_ctr_code ='
    || 'NVL ('
    || p_profit_center
    || ','
    || ' -0.197)'
    || 'OR debittransaction.profit_ctr_code ='
    || 'NVL ('
    || p_profit_center
    || ','
    || '-0.197)'
    || ' OR le.sap_posting = NVL ('
    || p_sap_posting
    || ',''$'')'
    || 'OR cmis.cmis_code = NVL ('
    || p_cmis_nominal
    || ','' -0.197)'
    || 'OR sa.sap_code = NVL ('
    || p_sap_booking_entity
    || ', -0.197)'
    || ' OR (be.booking_date BETWEEN '
    || v_booking_date_from
    || 'AND '
    || v_booking_date_to
    || ')'
    || ' )'
    || 'ORDER BY '
    || p_sort_by
    || ' '
    || p_order;

    some errors.. Try this...
    ' SELECT be.booking_date bookingdate, '
    || ' be.booking_entry_id entryid, le.line_item_id itemid,'
    || ' po.abbreviationprojectopportid opportunitycode,'
    || ' co.companyname clientname, '
    || ' le.line_item_amount bookingamount,'
    || ' be.ticket_num ticketnum, po.dealcurrency currency,'
    || ' cmis.cmis_code cmis_nominal,'
    || ' sa.sap_code sap_booking_entity,'
    || ' (SELECT full_name '
    || ' FROM iba_employee '
    || ' WHERE TO_CHAR (employeeid) = be.updatedby) updatedby,'
    || ' be.updateddate updateddate, '
    || ' (SELECT le.line_item_amount * rate '
    || ' FROM iba_currencyconversion '
    || ' WHERE tocurrencycd = '
    || 'USD'
    || ' AND currencycd = po.dealcurrency '
    || ' AND conversiondate = be.booking_date) amountusd,'
    || 'debittransaction.acct_code debitglaccount,'
    || ' credittransaction.acct_code creditglaccount,'
    || ' debittransaction.profit_ctr_code debitprofitcenter,'
    || ' credittransaction.profit_ctr_code creditprofitcenter,'
    || ' debittransaction.amt debitamount,'
    || ' credittransaction.amt creditamount'
    || ' FROM rb_booking_entry be, '
    || ' rb_line_item le, '
    || ' rb_booking_period bp,'
    || ' rb_cmis_gl_account cmisgl,'
    || ' rb_cmis_account cmis,'
    || ' iba_projectopportunity po,'
    || ' iba_company co,'
    || ' rb_sap_account sa,'
    || ' (SELECT acctr.line_item_id line_item,'
    || ' sapgl_acc.account_code acct_code,'
    || ' acctr.amount amt,'
    || ' sappr.profit_center_code profit_ctr_code'
    || ' FROM rb_account_transaction acctr,'
    || ' rb_sap_profit_center sappr,'
    || ' rb_sap_gl_account sapgl_acc'
    || ' WHERE acctr.profit_center_id = sappr.profit_center_id '
    || ' AND acctr.gl_account_id = sapgl_acc.gl_account_id '
    || ' AND acctr.transaction_type = ''D'') debittransaction,'
    || ' (SELECT acctr.line_item_id line_item,'
    || ' sapgl_acc.account_code acct_code,'
    || ' acctr.amount amt,'
    || ' sappr.profit_center_code profit_ctr_code '
    || ' FROM rb_account_transaction acctr, '
    || ' rb_sap_profit_center sappr, '
    || ' rb_sap_gl_account sapgl_acc '
    || ' WHERE acctr.profit_center_id =sappr.profit_center_id '
    || ' AND acctr.gl_account_id = sapgl_acc.gl_account_id '
    || ' AND acctr.transaction_type = ''C'') credittransaction '
    || ' WHERE po.projectopportunityid = be.projectopportunityid '
    || ' AND be.booking_entry_id = le.booking_entry_id '
    || ' AND po.companyid = co.companyid '
    || ' AND bp.booking_period_id = be.booking_period_id '
    || ' AND cmis.cmis_id = cmisgl.cmis_id '
    || ' AND le.sap_id = sa.sap_id '
    || ' AND le.cmis_id = cmis.cmis_id '
    || ' AND debittransaction.line_item(+) = le.line_item_id '
    || ' AND credittransaction.line_item(+) = le.line_item_id '
    || ' AND ( po.abbreviationprojectopportid LIKE ' || '''%' || NVL(p_opp_code,'NULL') || '%'''
    || ' OR le.line_item_id LIKE '
    || '''%'
    || NVL (
    || p_line_item
    || ,'null')
    || '%'''
    | ' OR le.line_item_amount = '
    ||NVL(|| p_booking_amt, -0.197)
    || ' OR po.dealcurrency ='
    || NVL(p_currency,'NULL')
    || ' OR be.booking_entry_id LIKE '
    || '''%'
    || NVL (p_entry_id,'NULL')
    || '%'''
    || ' OR be.ticket_num LIKE '
    || '''%'
    || NVL (p_ticket_num,'NULL')
    || '%'''
    || ' OR be.updatedby LIKE '
    || '''%'
    || NVL (p_user_name,'NULL')
    || '%'''
    || ' OR credittransaction.acct_code ='
    || NVL (p_gl_account,-0.197)
    || ' OR debittransaction.acct_code ='
    || NVL (p_gl_account,  -0.197)
    || ' OR credittransaction.profit_ctr_code ='
    || NVL (p_profit_center, -0.197)
    || ' OR debittransaction.profit_ctr_code ='
    || NVL (p_profit_center, -0.197)
    || '  OR le.sap_posting = '
    ||NVL (p_sap_posting,'$')
    || ' OR cmis.cmis_code = '
    ||NVL (p_cmis_nominal, -0.197)
    || ' OR sa.sap_code = '
    || NVL (p_sap_booking_entity, -0.197)
    || '  OR (be.booking_date BETWEEN to_date('''
    || v_booking_date_from
    || ''') AND  to_date('''
    || v_booking_date_to
    || ''')'
    || ' OR co.companyname LIKE '
    || '''%'
    || NVL(p_client_name,'NULL')
    || '%'''
    || ' )'
    || 'ORDER BY  ' || p_sort_by || ',' || p_order;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Help required in changing the default page during server startup

    I am using JSF 1.1 and BEA Workshop Studio 3.3 on WebLogic 9.2. When ever I start or restart my server, by default the application opens up in Internet Explorer with url http://localhost:7001/. I appreciate if someone can let me know if it is possible to change the url to open up my home page.
    To be precise I would like to open http://localhost:7001/pages/home.jsf instead of http://localhost:7001/ when the server starts or restarts. Any help is highly appreciated.
    Thanks.
    ~SirG

    Set the context root to "/" in application server's configuration and define a welcome-file in webapplication's web.xml.

  • Help required in changing the contents of a string

    hi guys
    I'm reading in a series of xml files which contain a passage
    of text like that below
    Here is an example:
    Since iritis is associated with HLA B27, it may obviously
    occur in any of the <GLOSS
    ID="seronegative">seronegative</GLOSS><SMALLIMAGE
    width="348" height="254">charcothip.jpg</SMALLIMAGE>
    I am displaying this text in a html textfield. However for it
    to display properly, I need to replace the <SMALLIMAGE> tag
    with
    <IMG SRC="charcothip.jpg"/> etc
    I can do a replace on <SMALLIMAGE and turn it to <IMG ,
    however how do i add the SRC="charcothip.jpg"> ?
    can anybody provide me with some suggestions for how to do
    this?
    Any ideas and suggestions would really be appreciated
    Thanks

    If you can replace <SMALLIMAGE with <IMG then I am not
    sure why you couldn't include the SRC="charcothip.jpg" with the
    <IMG portion?
    How are you replacing it currently? Could you store the
    replacement string in a variable and use it instead.
    var replacementString:String = "<IMG
    SRC=\"charcothip.jpg\"";
    Then you could do something like this (assume the myStr holds
    the XML String):
    var myArr:Array = new Array();
    myArr = myStr.split("<SMALLIMAGE");
    myStr = myArr.join(replacementString);
    Obviously, this will only work if you are replacing all of
    the <SMALLIMAGE pieces with the same image. If not then you
    could use the following:
    var searchFor:String = "<SMALLIMAGE";
    var newString:String = myStr.substring(0,
    myStr.indexOf(searchFor));
    newString += replacementString;
    newString +=
    myStr.substr(myStr.indexOf(searchFor)+searchFor.length);
    You can keep the width and height attributes since Flash will
    recognize those when rendering the HTML.
    Tim

  • Change of decimal places in productive system

    Hello
    We are on ECC 6.0 in a post Go Live environment.
    In our productive system we have set the decimal places to 2. For our business requirements, we would like to maintain 3 decimal places to 3 for Logistics modules (SD / MM & PP) where as we would like to maintain 2 decimal places for Financials module.
    Pls advise us of the methodology of this changeover as well as the possible side effects as a result of this change.
    Thanks & Regards,

    Hello
    The number of decimal places saved on the database is determined by the Global Settings made in Customizing for that unit (unit of measure or currency unit). If no entry has been made in Customizing, the number of decimal places saved for this key figure and characteristic value is the number of decimal places shown in the planning table at the time of saving. If the key figure has no displayable unit (for example, if it is a percentage), all the decimal places are saved.
    However, you need to perform some testing of scenarios to really know the impact 2 different decimals. Definitely, there is one aspect, whether any conversion is required or is it just a display of values in decimals.
    Data from FI to other modules is not a issue, but data from other modules to FI should be able to take this extra decimal.
    Although personally in my opinion it is not going to cause any errors, please test the same.
    Check documentation on Key Figures
    Reg
    assign points if useful

  • Change decimal places in a KF

    Hi,
    I have a KF Amount with Data Type = CURR.
    This KF has a data element associated ( automatically associated  when is created) with Lenght 17 and Decimal places 2.
    The KF is used in a ODS as Data Field.
    Now the user want to update the field, with 5 decimal places.
    I tried, but I couldn't change the Data Element. I read a thread that the Data Type has to be change to FLOAT instead of CURR, but when I see the Data Element it changed to Lenght = 16 and Decimal places = 16, and I cant set the decimal places.
    So, Could someone help me?
    Thanks, Federico

    Hi Federico,
    The table 'TCURX' determines how many decimal places the Key figure display the values. Mostly they are of 2 decimal places but in the query you can changing in the properties of the key figures to display 5 places. But you would typically not see all correct values. It will just do a rounding with 5 decimal places.
    Hope this helps.
    Best Regards,
    Hima

  • How to change a double to 2 or less decimal places

    hi
    im trying to change a double to 2 decimal places
    the reason is i have a angle that is sesitive to 1.0 x14
    and it look rediculas to look at :)
    i think on a calculater you use E exponents
    but im unsure.

    There's a DecimalFormat class. And also Formattable interface. Classes implenting the latter can be formatted using a Formatter which employs the notation common in C and other languages.
    String has a format() method that allows a formatted string to be produced, and there are numerous printf() methods in PrintWriter, Console etc
    public class RoundingEg {
        public static void main(String[] args) {
            double pi = Math.PI;
                // %.2f means "floating point number with 2 dp"
                // %n means "ewline"
            System.out.printf("%.2f%n", pi);
                // or to obtain a string
            String displayStr = String.format("%.2f", pi);
            System.out.println("Used as any other string: " + displayStr);
    }

  • How to add 2 decimal places if the number is whole number(Integer)

    Hi Gurus- I had a requirement to add the zeros for two decimal places even the number is an whole number.
    Example: I had a column which i gave the datatype as Number(8,2) .While Inserting from the flat file to the custom table column,i am rounding it to 2 decimal places.But if its the whole number i want that also to be rounded to 2 decimal places.
    1) 3456.89675 It's getting inserted as 3456.89
    2) 123 It's getting inserted as 123 (Instead i want this to be inserted as 123.00)
    3) 123.50000 It's getting inserted as 123.5 (Instead i want this to be inserted as 123.50)
    Can you please let me know how can i achieve it to insert any number(decimal or whole number) from the flat file as 2 decimal places in the custom table column.
    Thanks in advance.

    Please do not post duplicates -- To update the date for the first of the month

  • Change the decimal places in screen MIGO field Order quantity - MENGE

    Gurus
          the scenario is in Screen MIGO , when gettin inside posting MIGO the functinal consultants need to give order quantity in the second screen and the technical name of that field is MENGE which can accept only 2 decimal places after point...now the requirement is we need to have 5 decimal places after point in that field...
    how to achieve this....

    still not solved.
    impact analysis

  • Change decimal place rounding for Meter (M)

    Hi,
    We would like to change the decimal place rounding in transaction CUNI for M from 2 decimal place rounding to 3 decimal place rounding.
    May I know that is there any implications if I do like that? Can I change it back to 2 decimal place rounding later?
    Kindly please advise. Thank you.

    hi
    You can change the decimal places from 2 to 3.
    Even by keeping the decimal places 2 in CUNI, In any masterdata you can give up to 3 decimal places. System will give you warning message only and further calculations it will do based on 3 decimal places.
    At any time you can change it from 3 to 2.  The system will show you 2 decimal places for all master datas.  But for the masterdata you entered 3 decimal places by neglecting the warning message will be shown in 3 decimal places only.
    Regards
    Bala

  • I Need help. I Change My Number and now imessage don t work.

    I Need help. I Change My Number and now imessage don t work.

    Hi Ivonka88,
    Here are some steps to try troubleshooting your issue with, depending on your specific symptoms:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers!
    - Ari

  • Where to find my Serial Number for Photoshop CS6 Extended? The program has been on my computer for at least a year now and for some reason it is now requiring my serial number to run the program. Please help!

    Where to find my Serial Number for Photoshop CS6 Extended? The program has been on my computer for at least a year now and for some reason it is now requiring my serial number to run the program. Please help!

    Log in into your Adobe account and go to "My Products".  You'll find a list of all the products you've ever registered with Adobe.

Maybe you are looking for

  • DVI to Video Adapter Not Working...

    Hi, I bought this thingy to view video from my Dual 2 Ghz PowerPC G5 on a Panasonic HDTV, using one of its s-video inputs. The video is blank when I switch to that input. I tried using the "Detect Displays" in the Displays preference panel. I do get

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases. I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up co

  • ORA-22275: invalid LOB locator specified on trigger

    I have a trigger which copies a blob on insert to one table to another. CREATE OR REPLACE TRIGGER SWZTPRO.TSWTMPI_BEFORE_INSERT BEFORE INSERT ON SWZTPRO.TO_TSWTMPI REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE discriminator TO_TSWCRUL.BTC_DI

  • Windows Aero Scheme in Boot Camp

    How do i get Windows Aero scheme( Vista Ultimate) to function on my Macbook Pro. Is this at all possible in Bootcamp?

  • Transferring address book of Palm Vx to MS Outlook Express Address Book

    Can someone suggest a simple way to import the palm Vx address book into MS Outlook Express? No problem hot synching between the palm Vx device and the PC running Windows XP Home Edition. Charlie Post relates to: Palm Vx