How to change actual effort in project plan when Projected Actual option is enable in Project Server 2010

Hi,
We have enable "Protect User Updates" option from PWA->Task Setting and Display->Only allow task updates via Task and Timesheets, to protect actual efforts in project plan that PM changes manually, however in some cases we need to allow actual
effort changes in open projects so it there any way or workaround so that Administrator or PM can make changes in actual even though "Protect User Updates" option is enable. Please Help!!
Thanks,
Rahul

Hi Rahul,
Indeed when this option is activated, there is no way to directly update actual work in the project plan.
The workaround is to temporary deactivate this option, more preferly not during office working hours to avoid unexpected project updates.
A better workaround would be to ask the resource to recall, correct and submit again the timesheet, so the PM can approve an updated actual work. Finally the PM can use delegation to rscall and correct the timesheet for the resource.
Hope this helps.
Guillaume Rouyre - MBA, MCP, MCTS

Similar Messages

  • How to change the currency in Billing plan in SO line item

    Hi Experts
    Pls help in following scenario.
    Company Code Currency: HKD
    Sales Document Currency: INR(Indian Rupees)
    Item Pricing Condition Currency(PR00): 100 USD
    Item Netvalue: 4800INR(System caluculated as per exchange rate type M)
    Document Netvalue: INR 4800
    The sales document item is linked to a billing plan.
    I wanted to maintain 100USD in the billing plan.
    When i goto Sales->item-->Billing Plan, The currency in billing plan screen is document currency and is greyed out.
    How to change the Currency in Billing plan (to Item Condition currency) and maintain the Billing value in USD?
    Pls help.
    Regds
    Hari

    Currency change we wanted to do is not during Invoicing.
    In billing plan itself we want to change the currency setup the billing value in item condition currency.
    Any one, pls help.

  • How to change application owner of EPM11 planning application ?

    Hi Gurus,
    How to change application owner of EPM11 planning application ?

    Using this query i can find the application owner in backend :
    SELECT A.OBJECT_NAME AS APPLICATION_OWNER
    FROM HSP_OBJECT A, HSP_USERS B
    WHERE A.OBJECT_ID = B.USER_ID
    AND B.ROLE = 3;
    now i want to change Application owner ....please share if you know

  • How do I pay for my storage plan when I don't have a credit card? Last year I used an iTunes voucher but can't find that option this year. Please help!

    How do I pay for my storage plan when I don't have a credit card? Last year I used an iTunes voucher but can't find that option this year. Please help!

    Create an iTunes credit by redeeming a gift card and it will be charged to your credit.  From http://support.apple.com/kb/ht4874:
    "payment methods accepted include iTunes store credit, credit cards, and debit cards"

  • HT1918 how to change the country of the store when purchasing an app?

    how to change the country of the store when purchasing an app?

    Try contacting iTunes Support and ask them to remove the balance from your account so that you can change countries : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • How to keep the Unlimited verizon data plan when upgrading to iphone 4s?

    How can I keep my unlimited data plan when upgrading to a IPHONE 4s???
    I tried everything!!! I have an apple giftcard so I want to use it through apple.com but It wont let me keep my unlimited data plan

    The terms of your data/phone plan are solely determined by your carrier, in this case Verizon.  It is up to them if they wish to allow consumers to carry over the existing terms of their plan.  Hence, the thing you need to do is contact Verizon customer service and ask them to carry your terms over with your upgrade.  I'm hoping if you ask nicely they may do it.
    Hope this helps

  • How do I find out if Keep Itunes Media Folder Organized option is enabled programtically

    How do I find out if Keep Itunes Media Folder Organized option is enabled on Windows. My Java application needs to know this because it effects how it should interact with iTunes and last time I looked the api provided by the iTunes.dll doesnt provide this information.
    I have made some progress looking at iTunesPrefs.xml which stores preferences in a binary plist format and have mananged to extract the location of the iTunes xml file using a Java library called dd-plist
    public File getITunesXMLFile()
            System.getProperties().list(System.out);
            String homedir = System.getProperty("user.home");
            File prefsFile = new File(homedir,"AppData/Roaming/Apple Computer/iTunes/iTunesPrefs.xml");
            File xmlFile;
            try
                NSDictionary rootDict = (NSDictionary) PropertyListParser.parse(prefsFile);
                NSDictionary userPrefs = (NSDictionary) rootDict.objectForKey("User Preferences");
                if(userPrefs!=null)
                    NSData iTunesLocation = (NSData) userPrefs.objectForKey("iTunes Library XML Location:1");
                    if(iTunesLocation!=null)
                        String base64 = iTunesLocation.getBase64EncodedData();
                        String filepath = new String(Base64.decodeBase64(base64),"UTF-16LE");
                        xmlFile = new File(filepath);
                        System.out.println(filepath+":File Exists:"+xmlFile.exists());
                        if (xmlFile.exists())
                            return xmlFile;
            catch(Exception ex)
                ex.printStackTrace();
                //Use default then
                xmlFile = new File(homedir + "/Music/iTunes/iTunes Music Library.xml");
                if (xmlFile.exists())
                    return xmlFile;
            return null;
    However the Keep Itunes Media Folder Organized option appears to be stored in the Documents:132 key with other options and this library doesnt seem able to decode the daat into a  base64encoded value. I did think I could just compare differences between the file after enabling/disabling the option in iTunes, but the results are inconclusive - sometimes after chnaging the option the preferences file doesnt seem to change.
    Is there a known hack for this ?

    Thanks that certainly a possible workaround that I can see working but Im not that keen on using a users file as a test file, or adding a file myself that I have to keep deleting.
    The thing is I'm very close, I've found a library that can read the binary xml format to some degree, and managed to decode the Xml Library File sucessfullly (but I don't need to this as available as the in the COM lib anyway as itunes.getLibraryXMLPath())
    but I cannot decode this option whihc is lumped in with others, real shame they dont provide it via the COM lib.
    Added this link showing progress in case interested:
    http://stackoverflow.com/questions/17957433/how-can-i-work-out-if-ituneskeep-itu nes-folder-organized-is-set-programmaticall

  • How to change the components of the planned order? (FM or BAPI)

    I need to change the storage(LGORT) in the components.
    I found only MD_PLDORD_CHANGE_COMP_ITEMS, but could not get the correct result.
    Has anyone used this FM to change the components of the planned order?
    Can you please tell how to use it. Or advise an alternative solution.

    Hi Anton,
    There's a BAPI to change planned orders - BAPI_PLANNEDORDER_CHANGE, but it allows to change only header data.
    Therefore you'll have to go a bit longer, and use a couple of other BAPIs:
    First read the order that you want to change - BAPI_PLANNEDORDER_GET_DETAIL
    Second, create a new planned order with the changed data, based on the read planned order - BAPI_PLANNEDORDER_CREATE.
    Third, delete the old planned order - BAPI_PLANNEDORDER_DELETE.
    Regards,
    Mario

  • I just got my first mac and can anyone tell me how to change my address book to look like an actual book?

    Just got my first Mac and cant find how to change the appearance of my address book.  Can anyone help?

    Check out the built-in Address Book Help guide on your Mac (in Address Book, choose Address Book Help from the Help menu.  I dont think you can change the way the address book looks in terms of changing its appearance to look more book like, but I could be wrong.  I checked out a few google searches and did not find anything that stated how to do what you are asking.  If you find you cant change it to your desired specifications, you can always make the suggestion to Apple: http://www.apple.com/feedback/ 

  • How to change the message in CUCM 7.0 " Your Current Options"

    Dear All
    can any body help me or assist me to type my own message at the botom of the phones by default its your current options but i tried to much to change it or find any way to change and i failed.
    in Call Manager express it was easy to change just at the cli you type "system message Hello this is your IP Phone" but at the CUCM 7.0 i dont know how to change this and solve this problem so can any body tell me how to change this message please its needed 100% for me
    i have atached the picture that where the message cames so you people can see it.
    with regards
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;}
    Waisudin Farzam ویس الدین فرزام                           
    Project National IT Specialist            متخصص ملی تکنالوژی معلوماتی          
    Sustainable Development of Natural Resources Project
    IDA Grant No: H238-AF
    Program Management Unit (PMU)
    Afghanistan Geological Survey (AGS) Annex Building, Ministry of Mines,
    Kabul, Afghanistan
    AWCC Cell Phone:                              0093 - 700 - 29 60 62
    MTN Cell Phone:                                   0093 - 777 - 29 60 62
    E-Mail Address:                                     [email protected]
    E-Mail Address:                                     [email protected]
    E-Mail Address:                                     [email protected]
    Skype ID:                                               wais.farzam
    MSN ID:                                                  [email protected]

    You cannot change it, in CCM it was possible due to it being Windows and you had access to all the files.
    CUCM does not grant access to the necessary files for this unless you have root access and it's not granted for purposes other than troubleshooting or to apply a workaround from a bug.
    HTH
    java
    If this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • How to change ship to party'  Transportation zone when create a order ?

    Hi,
       I want to change ship to party'  Transportation zone when create order with VA01 before save.
       what user ecit can be used? I modify the Transportation zone  in the table xvbpa in program MV45AFZZ, but it does work.
       Please help ~
      Thank you~

    Hi,
    Try to use Fm  BAPI_SALESORDER_CHANGE
    in table u can find
    PARTNERS          Communications Fields: SD Document Partner
    PARTNERCHANGES          Partner changes
    and use UPDATEFLAG when  you change

  • How to change default selection in compensation planning

    Hi experts,
    We have upgraded our portal to EHP1 sp04.
    I need to change the default selection which it currently shows in "Employee Selection" under
    Compensation Planning-->Compensation Planning.
    When a user clicks on Compensation Planning>Compensation PLanning> he comes in an iview with 4 steps:
    There is one "Employee Selection" scroll down view, I need the default to be "Direct Reports"
    http://rapidshare.com/files/308150359/DirectReports.jpg
    The default it shows is "Employees from organizational units", I need to change it to "Direct reports". Can someone tell me how I should proceed about it.
    Please guide me
    Regards,
    Rajat Sharma

    Hi,
    I have solved this issue.
    Go into SPRO>integration with other sap system>business packages>mysaperp>organizational structure view
    group organizational structure view.
    select mss_ecm_sel and change the nos. accordingly.
    thanks,
    Rajat

  • How to change characteristics values in PPDS planned order?

    Hi,
    I have few PPDS planned orders. I want to change the value of few characteristics of existing PPDS planned order.
    How can I do the same?
    Any standard T.Code or function module or report available to update the characteristics values of PPDS planned order in APO.
    Thanks in advance.
    Warm Regards,
    Surajit Das

    Hi Surajit,
    Char can be changed programatically.
    If you want to change the Planned Order characteritics before its creation, you can do so at the time Planning run itself (/SAPAPO/RRP3) in BADI /SAPAPO/RRP_SRC_EXIT, Method RRP_USEX_PLORD_CREATE.
    Planned Order characteritics can be changed after it creation.using BAPI BAPI_MOSRVAPS_SAVEMULTI3.

  • How to change maintenance Strategy in Maintenance Planning?

    Hi Friends
    In our maintenance plan, maintenance plan additional data, maintenance strategy is defined as 3M6M. Within this strategy, maintenance cycles are defined. Now we want it to change  to  the maiintenance strategy, 2M that is bi monthly. How to do it?
    Do I need to chage it in the maintenance plan category? I am very new to PM. Pls explain.
    Thanks
    Sangeeta

    Dear,
    It is not possible to change the maintenance strategy once assinged to task list,other option just try in the task list select the operation and select the maintenace package ,here delesect all the maintenance package alloted and then try to change it.
    First delete all the operations in the task list ,then system wil allow you to change the maintenance strategy.
    Best way is to create new maintenace plan with new strategy.
    Hope clear to you.
    Regards,
    R.Brahmankar

  • How to Change Component on a SNP Planned Order ( Just 1 time )

    Hello,
    We are trying to change a component on a SNP Planned Order just 1 time.
    So we do not want to change the PDS since this is one time change only.
    We tried changing it in R/3. Once we do that, R/3 shows new component but APO still shows dependant demand on old component ( May be because APO SNP Planned order is still connected with the PDS ) .
    Then we went to APO and tried to change the component in /sapapo/rrp3. Here you can delete the old component but doesn't let me add new component.
    Next thing we tried was to convert it to PPDS Order. Once converted, we went to change mode and tried to remove old component and add new component. It lets me do this. Only issue with this route is that, it puts correct start and end dates on the order dependning on the order quantity and so order moves the dates which we do not like.
    Is there any other better way to fix this issue ?.
    Thanks.
    Ketan Doshi.

    This being a very unique requirement, I would use one-off approaches usually not followed. You may need to explore the use of BAPI BAPI_MOSRVAPS_CREATESNPORDER. This will help you point the source of planned order to a PPM or a PDS that you may want to create in APO system on a one-off basis. PPMs can be maintained in APO, however PDS are usually CIFed from R3. You can try to create PDS (based on the new component) in APO system only using backend tables. Try do some little research on /sapapo/curto tables to create the PDS in APO. Then use the BAPI to point the source to this new PDS. (better you also try the PPM approach since there are no issues keeping the PPM in APO)

Maybe you are looking for

  • How to synchronize multiple computers via usb stick?

    I have three computers on which I work most of the time and I have some files, that I have to access/change on all three and thus I have to sync these files.  I would like to do this using an usb stick.  To do so, I formatted a partition on my usb st

  • Looking for best 1tb external hard drive for 2008 I-mac?

    Hi, I'm currently running Snow Leopard 10.6.8, but might upgrade to Mavericks at some point. I have 3GB of RAM, but will upgrade to 6GB soon.  I would like to get a reliable 1tb external hard drive.  It's only for the desktop, so it doesn't have to b

  • Restriction of charachteristic value in BEx

    Hi! I only know first 2 symbols of charachteristic value. How can I restrict charachteristic value in BEx by these symbols? For example, restrict by AB*.

  • Deleting the infotype 14

    Hi Gurus,   Am developing the program in which for the given subtype for the infotype 14 all the records should be deleted for that date selection. For this I write a program given below. It show that the Error 009No data stored for 0014 in the selec

  • Yet Macbook Electrical Shock

    Hello All, I know.. Is a well knew problem.. But let me explain.. I bought a Refurbished Macbook Pro 15" (not Unibody) last week, yesterday is arrived (WOOOW)! First thing that I do, is to connect Macbook to power plug (I have a brand new house with