Forecast Generated from Staffing Plan not showing Actuals Hrs

Hi
I am generating Project Forecast based on staffing plan , still it is not showing the Actual Hrs , though I have timecard for the project.
Following are the steps:
1. Created a Forecast Plan Type , added to Project.
2. Created a version where source was Staffing Plan and Revenue Acc Method was Work
3. Enetered the timecards of 16 Hrs for the Project for the resource (he is part of Planning Resource List added to Forecast) -> Distributed the Labor Cost
4. Enetred the Project PJR Approved Assignment with total effort of - 100 hrs
5. Ran PRC: Update Project Performance Data also for this project.
Now Generated Forecast for this Project , the Resource Assignment line is shown but with only Planned Quantity of 100 hrs and ETC = 100hrs , actuals are not shown.
Am I missing something here.
Thanks
Rahul

Hi,
For actuals to be reflected , the PJI summarization processes should be run.
Thanks,
Sathish
www.projectsaccounting.com

Similar Messages

  • Why the content of the Explain Plan not show out?

    Why the content of the Explain Plan not show out?
    I am using Oracle 11g.
    I already ran the utlxplan.sql sctipt and I also set serveroutput on.
    SQL> set autotrace on
    SQL> EXPLAIN PLAN FOR SELECT*FROM DEMO_TABLE WHERE OWNER='HR';
    Explained.
    Elapsed: 00:00:00.67

    When you say:
    My release 10.2 database display the Explain Plan automatically.
    How to make 11.1.0.6 Oracle database to display the Explain Plan automatically.What do you mean? Specifically, what commands are you executing in the 10.2 database, that displays the execution plan "automatically"?
    Are you saying that if you execute the same command in 11.1.0.6, you don't get a similar result? What happens? Do you get an error?
    For both the 10.2 case and the 11.1.0.6 case, post the full output of the commands you're executing, and the result you are seeing.
    Then, maybe someone can help you.
    When you post the output, please encapsulate it in a pair "code" tags, which is the word "code" without the quotes, surrounded by a pair of curly braces {}.
    When you do this correctly, the output looks like:
    This is output from my execution plan run.and is much easier to read.
    Don't be afraid to use the preview tab to see if your message will be posted with the correct formatting.
    -Mark

  • HT203167 I had to replace my harddrive on my IMAC and downloads from ITUNES do not show up. How do I restore my previous library?

    I had to replace my harddrive on my IMAC and downloads from ITUNES do not show up. How do I restore my previous library?

    It has always been very basic to always maintain a backup copy of your computer for this very occasion.  Use your backup copy to put everything back.
    If for some reason you have failed to maintain a backup copy, not good, then you can redownload some itunes purchases in some countries:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT1937 i have a white iphone 4 that says it was approved but restoring from itunes does not show (congrats unlocked message)

    i have a white iphone 4 that says it was approved but restoring from itunes does not show (congrats unlocked message)
    hel

    MaDCrackeR wrote:
    Email from AT&T says the IMEI number was approved for unlocking
    ..........4S that worked fine and it shows the message "congrats unlocked" in itunes
    When restored. But the 4 does not. AT&T insists its unlocked but they are only going off
    Of the request and IMEI number. Is there a way from the phone i can verify it was unlocked?
    If AT&T e-mail says it is unlocked, then believe it is so. Insert non-AT&T SIM inside and after backing up restore in iTunes again. Unlock gets attached.
    You can check the status of the unlock request on AT&T web-site.

  • Some shows purchased from itunes do not show on Apple TV

    I've downloaded and purchased via iTunes a few kids tv shows. These shows do not show up on my apple Tv. They are marked to sync in iTunes etc, but they still do not appear in Apple TV. any ideas?

    ok, here's an update as to the problems i was having. This had nothing to do with the software update. I figured out that when i unplug my iphone before my pc is ready to disconect it, I get an error... something to the effect of Apple mobile manager blah blah blah. If I reboot my computer I am able to sync. So, I guess the solution is to make sure my iphone is ready to disconnect before I actually disconnect it. Funny how that messes up the sync of the ATV. thanks winston for the insight.

  • Loading Textual Data from HttpService Would Not Show Up on TextArea

    Hi,
      I have something fairly strange here that I have a little problem getting it to work. I am loading some data from XML and attempt to format it a little more on Actiosncript and print it out on the TextArea. For some reason, it would not show up, even though when I used Alert.show it does spit out the entire xml data set. Based on this, I know my data has been loaded correctly, but I am not sure why it is not showing up on my page.
    Here is the code,
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:states>   
            <mx:State name="view">
              <mx:RemoveChild target="{intro}"/>
                <mx:AddChild relativeTo="{applicationcontrolbar1}" position="before">
                    <mx:TextArea editable="false" id="viewText" width="450" height="279" text="{messageInfo}"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Script>
            <![CDATA[
                import mx.events.ItemClickEvent;
                import mx.controls.Alert;
                import mx.rpc.events.ResultEvent;
                import mx.rpc.events.FaultEvent;
                [Bindable]private var message:XMLList;
                [Bindable]private var messageInfo:XMLList;
                private var savedIndex:int = 99999;
       private function clickHandler(event:ItemClickEvent):void {
                    if (event.index == savedIndex) {
                        //don't do a thing
                    else {
                        savedIndex = event.index;
                          navigateToURL(new URLRequest("../"+ event.item.data));
                private function toggleButtonBar_itemClick(evt:ItemClickEvent):void {
                    currentState = evt.item.data;
                    if(evt.item.data == "view") view();
               private function view():void{
                  currentState="view";
                  userView.send();          
               private function httpService_fault(evt:FaultEvent):void {
                    var title:String = evt.type + " (" + evt.fault.faultCode + ")";
                    var text:String = evt.fault.faultString;
                    Alert.show("There is an error! Type " + title + " " + text);
               private function httpService_result(evt:ResultEvent):void {
                    messageInfo = XML(evt.result).messages.message;
                    Alert.show(messageInfo);
                    message = XML(evt.result);
                    var message_name:String = "";
                    var message_phone:String = "";
        for each (var message:XML in messageInfo.messages.message) { 
              viewText.text += "Name " + messageInfo.name + "\n";
              viewText.text += "Phone " + messageInfo.phone + "\n";               
            ]]>
        </mx:Script>
    <mx:HTTPService id="userView" url="messages.xml" resultFormat="e4x"
      fault="httpService_fault(event);" result="httpService_result(event)" />
    <mx:PhoneNumberValidator id="pnVal" source="{your_phone}" property="text"/>
    <mx:EmailValidator id="emailVal" source="{your_email}" property="text"/>
        <mx:Array id="dp">
            <mx:Object data="view" label="View"/>
        </mx:Array>
        <mx:Panel id="panel" title="My Home" height="70%">            
        <mx:TextArea id="intro" width="77%" height="100" borderStyle="none" paddingLeft="10" color="black">
                <mx:htmlText><![CDATA[Welcome to my page.]]></mx:htmlText>
            </mx:TextArea>
             <mx:ApplicationControlBar id="applicationcontrolbar1">
            <mx:ToggleButtonBar id="toggleButtonBar" color="#FFFFCC"
                    dataProvider="{dp}"
                    itemClick="toggleButtonBar_itemClick(event);" />
        </mx:ApplicationControlBar>           
        </mx:Panel> 
    </mx:Application>
    Note, there are other items in the array, but those are not relevant to the question of the topic here, and therefore I am not posting the code for those sections.
    When I click on the View button, it does give me the correct state, but I get a blank box of textArea with no data when I know there is output from Alert.show in the view(). What have I missed?
    Thanks for your help.

    Thanks for the pointer. As a matter of fact, I found out that it is because of my xml nodes messing up, and that the text was displayed as white for someb reason. With a white background, of course I would not see a thing.
    Thanks again.

  • HD video from SD Card not showing up in Iphoto or Imovie

    When I put my SD card in, Iphoto comes up and has my pictures but not my HD video.  I tried to import in Imovie and then went under my SD card file and the video still is not showing.  The video is 100% on the SD card. They showed up when I imported my pictures and videos using windows on my mini toshiba. I want to edit the video on Imovie though..  Why wont they show? 

    As AussieDJ suggested - have your copied the files from the SD card to your hard drive? You should be able to open them in QuickTime or, at least, VLC DVD Player. I get from your message that you just want to watch the movies and not edit them?
    First, copy the movies onto your hard drive. Open QuickTime player and try to watch them there. If that fails, try downloading VLC DVD Player, open it and then try to view your movies.
    Good luck,
    Clinton

  • Messages from others are not showing in the correct order.

    I can send a message from my iPhone ... and it will show up at the bottom of the conversation in Messages on my Mac as the most recent message. But when I receive a reply, it does not show up as the most recent message.  Instead, it appears further up the conversation in the past.
    Anyone else having that problem?  Is there a fix?  Thanks!

    Hi,
    Unfortunately this seems to happen.
    It is more noticeable when the Mac has been Off line (Shut Down or Sleep) and a conversation or two has been happening on an iOS device.
    When the Mac gets turned On Messages tries to catch up.
    These iMessages play out like a speeded up chat but are not Instant.
    Consequently any further parts of the conversation then get placed in between and out of sync.
    Jabber  and AIM IMs are times stamped and it would appear that the iMessages ones are as well
    What does not seem to happen with the iMessages ones is the App using those Time Stamps to put them in order again.
    Currently there is no fix (other than keeping the computer On and Awake)
    9:55 PM      Thursday; November 8, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Messages from POP account not showing up in IMAP account folders

    I've posted on this already, but I'm a little clearer about what the issue is, so I'm gonna try again.
    I'm using Mac Mail. Recently my ISP assigned me an IMAP account. [Customer service says "we only use POP," but I can't get a POP account.] Messages in my mailboxes show up fine. I'm having difficulty with the mailboxes directly associated with the account---Inbox, Sent, Draft, etc.
    I have only one Inbox. There are three Sent folders---the one that is always at the top of the sidebar, and two in an IMAP-specific set of folders. I coped the older messages from the POP account into what I thought were the corresponding folders of the IMAP account. Copied messages appear only in one of the IMAP Sent folders. However, when opened, they have no content. In some cases there is an indication that the content is "loading" but nothing ever appears.
    Is it possible to get the older messages from the POP to show up with content in the IMAP folders? I gather from reading related threads from the archive that copying messages between account types should not be a problem, but it is for me.
    Thanks,

    Well, I thought I found a solution in the archives here: Import the old messages from within Mail. Had no doubt that would work. Well, it didn't. Though all the old messages were Apple Mail messages, when I tried to import Mail said, "No valid Apple Mail files were found." Tried importing them as mbox files. Same result.
    IMAP has advantages for people who check mail from more than one device, or for multiple users of an account. Not having been forwarned by AT&T that I was going to be switched from POP to IMAP, it has been a big headache for me. And it clutters up the sidebar with a changing collection of folders, including many that seem redundant, and some whose purpose I can't, in my ignorance, imagine.
    Supposed to get a call today or tomorrow from a unit in AT&T that is "specially trained" to handle problems like mine. We'll see.
    I sure would like to get help from somewhere.

  • Option claims from CRM are not showing in BW report.

    Hi All,
    We are having a problem with BW report. The report shows all the claims thatt are created in CRM system( spource sys- CRM). We notices that claims that are called as option claims are not showing in BW report, but they are present in BW. I have checked filters in report design. no filters exist. Where they are getting filtered out. Please help me.
    Haaris..

    Hi,
    I am giving you ore information on the above issue, the above query is running on an infoset, I realized, data is missing from infoset. Where as the data is present in DSO.
    The other thing I can see every other claim in BW, but I cannot see Option claim which are very less compared to other claims.
    The infoset has four DSOs and one characteristic as components.
    Please let me know if you get any idea?
    Haaris.

  • Purchased Garageband from App Store not showing in Purchases

    I have purchased Garageband from the App Store and it downloaded seamlessly, worked well for the first few hours, on the next launch it wouldn't start unless i download some additional stuff of 1.6GB of size which i did. Once done and started installing it stops at some point before it completes installing and suddenly closes the application, when started again it askes for the download again. I did try downloading again, same scenario. Also, Garageband is not showing in my Purchases section of the MAS.
    Any help is much appreciated.

    Hi..
    You may need to, "unhide" the purchase.
    Follow the instructions here > Mac App Store: Hiding and unhiding purchases
    Try re downloading GB again ...
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    Make sure and use the same Apple ID used for the original purchase.

  • Photos albums from iphoto will not show in iweb media section

    Hello
    I have 2 issues. Photo albums that I created in Iphoto will not show in the Iweb media section. Also, all of the photos from half the Photo pages go missing after I update and republish to my site. They still show on the site but the photos are not longer showing in Iweb and have to be added back to the photo pages.

    Welcome to the Apple Discussions. Try the following:
    1 - close iWeb.
    2 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your User/Library/Preferences folder.
    3 - go to your User/Library/Caches/com.apple.iWeb folder and delete the contents.
    4 - reboot.
    5 - launch iWeb and try again.
    OT

  • Field data from RSA3 is not showing in PSA

    Hi guys
    I can see the data field (custom) data populated in RSA3 for one of our data source...but which is not showing up in PSA table . we recently reinited and for some reason that particular field is not bringing the data .For all the records this paritcular field in PSa showing as 00.00.0000 . How come a field value  shows in RSA3 and not PSA ???? please advie what should I do
    regards

    Hi sam thanks...I can see that data in extractor but not in PSA , that means it should not be in tra str /update rules/. the problem must be in extractor ...please help how to get this date in PSA as is...
    I have one more issue, when Iam loading the data from PSA to cube the data was half loaded and then the remaining half has yellow status in monitor...when I checked in simulation mode the following message is coming " Enter rate USD / rate type M for 30.03.2007 in the system settings" do you have any idea on how to fix this ?
    thanks
    Edited by: sam on Jan 25, 2008 9:17 PM

  • Drop Down In List From Lookup Does Not show all items in mobile view

    I have list called "incident".
    I have a list called "locations"
    The "incident" list looks up a value from the "location" list as a dropdown.
    The location list contains 25 building names.
    When I try to fill out the "incident" list in mobile view
    the "location" drop down only shows 16 items. I checked the "locations" mobile view limit and set it to 99 to make sure all would show up.
    The desktop view for the "incident" list shows all 25 buildings from the "locations" list.
    Any advice on how to get those extra 7 locations to show up?
    Jef

    Still don't have an answer. I'm now looking to use a radio button or something to use as a work-around. If I use a lookup and tell it to allow multiple selections (shows as checkbox) it does not show all values in the mobile view.
    If I input each item and choose choice, it only shows up as dropdown. I need radio buttons. If I choose lookup and allow multiple selections, it does not show all the options.
    I need some help on this.
    Jef

  • Backed up photos from iPhone 4S not showing on iCloud or iPhone 5S

    Hello,
    I hope someone can help me.
    I recently got an iPhone 5S and most of my photos aren't appearing. I can't see them on iCloud.com, either.
    My old iPhone 4S has always been set to back up to iCloud (photos included) and did so for the final time the night before I started using my 5S.
    When I set up my 5S, it immediately showed all the data from my 4S (notes, reminders, etc.) EXCEPT most of my photos. It shows photos from 16 April 2014 onwards, but nothing before that. My iPhone 4S has photos right back to August 2013 which should be on iCloud.
    In 'Settings > iCloud, 'Photos' is set to 'on'. The storage and backup information says 6.4GB of my backup is camera roll. So why has my complete camera roll failed to appear on my 5S?
    Also, when I login to iCloud on the web, photos are not shown at all - so I have no reassurance they're backed up (despite paying for extra storage). Why is this? I have a total of 15GB iCloud storage and only 8.3GB is currently used.
    Very confused - please help!

    Hi
    You may find some answers here:
    http://support.apple.com/kb/ht4486
    Note you can also sync your photos to your new device via itunes if you have them avaliable on your computer see here:
    http://support.apple.com/kb/ht4236
    Hope this helps

Maybe you are looking for

  • Exporting: How to include all metadata but keywords?

    When exporting to JPEG, is there any way to export all of the metadata that is currently exported, but exclude just the keywords? I know there is an option to minimize metadata on export, but that seems to remove everything but the copyright informat

  • HT201335 AirPlay will not mirror what is on my IPad. No picture.

    AirPlay will not mirror IPad. No picture and IPad gets very slow.

  • APPINT 200_620 download

    Hi experts, Does anyone have the APPINT 200_620 sar file for the XI-Addon of WAS 6.20? We can only find the patches on the marketplace. We've requested from SAP and they said they've just moved these files into archive because they no longer support

  • How to run EBOOT file on PS3?

    I was wondering how I can run an EBOOT file on the PS3? Ages ago I purchased Crash Bandicoot from the Playstation store to run on my PSP, well I got a PS3 for christmas and I still have the file on my computer so I was wanting to stick it on my USB H

  • How to enable iCloud?

    how to enable iCloud on MacBook Pro and iPad2 so my calanders on both are synchronized?