Quantcast
Channel: Project Server General Questions and Answers forum
Viewing all 7942 articles
Browse latest View live

Timesheet keeps loading when saved or sent for approval

$
0
0

Of late we are having issue with users while trying to save timesheet and send timesheet for approval. On selecting these buttons the timesheet keeps on showing 'loading' message and when user clicks on any other link in PWA page a pop-up comes up 'You are naviating away from this page, your changes will be lost'.

Most the users facing this issue are either using IE 9 or IE 10 and for some users changing Browser mode to IE 9 in F12 Developer Tools worked but some users responded back saying issue still persists. But for the same users timesheet save and submit timesheet worked fine in Mozilla and Chrome browsers. Cache issue might not be present in IE as this issue happened even after clearing browser cache in IE.

The similar is issue was faced by some PMs accessing Project Center. Also there is no entry for this behavior in ULS logs.

Environment is Project Server 2010 SP2.


active issues and risk count is not coming

$
0
0

Hi all,

i am attaching issues and risks at project level and task level. But i m not getting the count in active risk and issues column.

help me out

Thank you

No "Document Library" in a Project's SharePoint Site Mobile View

$
0
0

The mobile view for certain sites -- all from the same SharePoint site template -- do not have the Documents library in mobile view, nor is it an option to add when editing the mobile view. Oddly, the document library is available in the mobile view of the template.

Has anyone seen this happen before?

Strategic Impact PDP

$
0
0
In Project Server 2010, what database entity/field do I test to see if the Strategic Impact PDP has been completed?

how to replace inactive resource who has actual s in project with a new one in MS project 2010

$
0
0
how to replace inactive resource who has actual s in project with a new one in MS project 2010?

How I to restore the Project Site Deleted on Project Server 2010 ?

$
0
0

Hi

I have a questions, I deleted  a Project Site from project server 2010, but I need restore this site Do you have any way for restore the project site.

Thanks a lot for the help

Adding Baseline1 and Baseline2 on Gantt Chart View

$
0
0
I would really appreciate if someone could help me with this problem that I have been facing for quite some time. My boss has asked me to add up Baseline1 and Baseline2 details on MS Project Server 2010 Gantt view along with Actuals and Baseline (which apparently is easily possible on MS Project Professional2010). This will enable us to calculate the progress of our project between each baseline and what is needed to improve the progress of the project.

In-short, I don't see the option or additional "bar name" with a name baseline1 or something to add it on to my project gantt view:

Project Web App > Server Settings > Gantt Chart Format.

SQL Query to retrieve the Workflow Status in MSPS 2010 PWA

$
0
0
I need to determine the status of stages within a workflow for "incomplete". What DB/Table or Views are required to get this information by project?

Task progress update from PWA moving the start and finish dates

$
0
0

We are using PWA to submit the tasks progress (% Work Complete). When people are sending their statuses and project plan is updated with the % Complete, Tasks' start and finish date are moving so some other date. First I thought its happening for Fixed work tasks as project scheduling engine is trying to accommodate the remaining work, but it is also happening for fixed Duration tasks. Is there any way that start and finish date stay the same?

Also, we are experiencing some abnormal behavior when % complete is updated. For example, we are calculating SPI and when % complete comes from PWA, it calculates wrong (some other number). If we remove the % complete in Professional and reenter the same % complete, it shows the correct value. Anybody experiencing the same issue? Any solution or work around is greatly appreciated.

We are on Project 2010 (14.0.7011.1000) SP2 MSO (14.0.7015.1000).

Regards,

 

Joining Actuals and Planned Work from Project Server

$
0
0

Hi,

I have an SQL based query which returns Actuals and Planned work from Project Server; however a number of records (generally generic resources based on the ResourceIsGeneric column) are excluded. I believe this is because my Actuals query does not return generic resources as we are joining both sides of the query on ResourceUID. I have included a snippet below - is there a way to join Actuals and Planned work so I can return all Resource data?

Thanks

SELECT tl.ResourceUID
			,tl.ProjectUID
			,tl.ResourceName AS [ResourceName]
			,CASE 
				WHEN tl.ProjectName = 'Administrative'
					THEN tl.TaskName
				ELSE tl.ProjectName
				END ProjectName
			,ruv.RBS AS [RBS]
			,Sum(ta.ActualWorkBillable) ActualWorkBillable
			,Sum(ta.ActualWorkNonBillable) ActualWorkNonBillable
			,Sum(ta.ActualOvertimeWorkBillable) ActualOvertimeWorkBillable
			,Sum(ta.ActualOvertimeWorkNonBillable) ActualOvertimeWorkNonBillable
			,CASE 
				WHEN Sum(ta.ActualOvertimeWorkBillable) > 0
					THEN Sum(ta.ActualOvertimeWorkBillable)
				END [HOURS]
			,DATEPART(year, ta.TimeByDay) AS [Year]
			,DATEPART(month, ta.TimeByDay) AS [Month]
			,DATENAME(month, DATEADD(month, DATEPART(month, ta.TimeByDay), - 1)) AS [MonthName]
			,puv.[Project Status] AS [ProjectStatus]
			,ruv.[Primary Role] AS [PrimaryRole]
			,ruv.[Resource Department] AS [Department]
			,ruv.ResourceIsGeneric
			,ruv.[Cost Category] AS [ResourceType]
			,puv.[SAP Project Code] AS [SAPProjectCode]
			,CASE 
				WHEN tl.ProjectName <> 'Administrative'
					THEN NULL
				ELSE tl.TaskName
				END TaskName
			,puv.[Project Plan Type] AS [ProjectPlanType]
			,puv.[GEM Project Manager] AS [GemPM]
			,ruv.[Rate Code] AS [RateCode]
			,ruv.[Cost Centre] AS [CostCentre]
			,ept.EnterpriseProjectTypeName AS [EPT]
			,puv.[I DO Phase]
			,puv.ProjectOwnerName AS [ProjectOwner]
		FROM dbo.MSP_TimesheetActual_OlapView ta
		INNER JOIN dbo.MSP_TimesheetLine_UserView tl
			ON ta.TimesheetLineUID = tl.TimesheetLineUID
		INNER JOIN dbo.MSP_EpmResource_UserView ruv
			ON ruv.ResourceUID = tl.ResourceUID
		LEFT JOIN dbo.MSP_EpmProject_UserView puv
			ON puv.ProjectUID = tl.ProjectUID
		LEFT JOIN dbo.MSP_EpmEnterpriseProjectType ept
			ON ept.EnterpriseProjectTypeUID = puv.EnterpriseProjectTypeUID
		WHERE ta.TimeByDay >= @xDate1
			AND ta.TimeByDay < @xDate2
			AND tl.TimesheetStatus IN (
				SELECT ParamValues
				FROM @ParamTable
				)
			AND ta.ActualWorkBillable > 0
		GROUP BY ...
		) TimesheetActual
	FULL JOIN (
		SELECT ruv.ResourceUID
			,puv.ProjectUID
			,ruv.ResourceName
			,puv.projectname AS ProjectName
			,ruv.RBS AS [RBS]
			,Sum(abduv.AssignmentWork) AS [PlannedWork]
			,DATEPART(year, abduv.TimeByDay) AS [Year]
			,DATEPART(month, abduv.TimeByDay) AS [Month]
			,DATENAME(month, DATEADD(month, DATEPART(month, abduv.TimeByDay), - 1)) AS [MonthName]
			,ruv.ResourceIsGeneric
			,puv.[Project Status] AS [ProjectStatus]
		FROM dbo.MSP_EpmResource_UserView ruv
		INNER JOIN dbo.MSP_EpmAssignment_UserView auv
		INNER JOIN dbo.MSP_EpmAssignmentByDay_UserView abduv
			ON auv.AssignmentUID = abduv.AssignmentUID
				AND auv.ProjectUID = abduv.ProjectUID
				ON ruv.ResourceUID = auv.ResourceUID INNER JOIN dbo.MSP_EpmProject_UserView puv
				ON auv.ProjectUID = puv.ProjectUID
					AND abduv.ProjectUID = puv.ProjectUID INNER JOIN dbo.MSP_TimeByDay_OlapView tbdov
				ON abduv.TimeByDay = tbdov.TimeByDay WHERE abduv.TimeByDay >= @xDate1
				AND abduv.TimeByDay < @xDate2
				AND ruv.ResourceName <> 'Unassigned Resource'
				AND ruv.ResourceName IS NOT NULL
				AND abduv.AssignmentWork > 0
		GROUP BY ruv.ResourceUID
			,puv.ProjectUID
			,ruv.ResourceName
			,puv.projectname
			,ruv.RBS
			,DATEPART(year, abduv.TimeByDay)
			,DATEPART(month, abduv.TimeByDay)
			,ruv.ResourceIsGeneric
			,puv.[Project Status]
		) TimesheetPlanned
		ON TimesheetActual.ResourceUID = TimesheetPlanned.ResourceUID
			AND TimesheetActual.[Year] = TimesheetPlanned.[Year]
			AND TimesheetActual.[MonthName] = TimesheetPlanned.[MonthName]


selectively publish and/or approve certain tasks in Project Server 2013

$
0
0

hello forum members,

is there a way in Project Server to selectively publish and /or approve certain tasks?  for example - publish all tasks with new actual. Also, is there a way to auto-publish and not wait until project managers publish their updates?

tatiana


tatiana

create services and applications in Project Server

$
0
0

hello forum members,

We are currently in process of migrating data from CA Clarity PPM into Project Server. In that application there exists services and applications in addition to projects. 

Does anyone knows or have any suggestions on how to set up services and applications in Project Server? Or Project Server only allows projects?

tatiana


tatiana

Configuring timesheets for new-to-the-system resources

$
0
0

Hello,

Is there a way to define when timesheets start for resources who are new to the company?

Example - A new user started on 8/11/14, however when the supervisor goes to look at unsubmitted timesheets (Approval Center, History, Timesheets, "My Resources unsubmitted Timesheets") the timesheets populate all the way back to the beginning of last fiscal year. If you delegate as the resouce, you can go in and see that the timesheets are available to create, if you create the timesheet from the past, you can delete it, but then it gives you the option to create the timesheet again.

Any ideas on how to limit this?

Project Server 2013 show existing assignments in time sheet

$
0
0
How can be shown all existing task assignments in the timesheets automaticly for all users? Now every one, for every time period, has to add a Row an select the assigned task.

Project Server 2010 Excel Reports

$
0
0

For the last few weeks I have tried to create an Excel timesheet report. However, the data that is being pulled will not go past May. Timesheets have been submitted and approved for this project. The project is saved, published and checked in. The resources on the project continue to submit time against that the tasks, however the timesheet report does not reflect any reported time after May.

LaKysha


Project Server 2013 Note Field Issue

$
0
0
Hello Experts. I have a Project Server 2013 issue as follows: we are seeing the task "Notes" field in the PWA site being cut off and, instead of the older notes, we see wierd characters such as "05-30-13 SDP1.  Updated the ones that we coul@?"" or "[Pa??".  If we check out the Project and view the notes they are all there but not in PWA. Has anyone seen such a thing? Thanks very much for any help or direction.

Assigning a template when importing a project

$
0
0

Is there a way to assign a template when saving a Project to the PWA for Project Professional for the first time?

I ask because some templates have a predesigned SharePoint site connected with them.

In that situation, am I better off copying and pasting to a blank project made with that template?

Thank you.

Project Site custom list data reporting with Odata connection, BI reports in Project online 2013.

$
0
0

Hi,

Can we create an excel report with Odata feed connection which includes project site custom list data?

Example: My Project is "ProjectTest" and it has a project site in which i created a custom list "ProjectNotes" with some new columns. I want to include these columns in my report.


sandeep

Unable to Connect to Project Server 2013 with Project Pro 2013

$
0
0
<p>Previously, after installing, and configuring PS 2013 in my SharePoint 2013 environment - I was able to set up a "Managed" account on "Project Professional" that pointed to my PWA instance @ <a href="http://<servername>/pwa">http://&lt;servername&gt;/pwa</a></p><p>This worked fine for two months now. </p><p>Today, something changed. I attempted to open a project from Project Center, as well directly connecting to Project Server from Project Professional but I keep getting this error message - </p><p></p><p><img alt="" src="http://social.microsoft.com/Forums/getfile/374599" /></p><p></p><p>Back on my SP 2013 Server, I had ULS Viewer Tracking Logs that had "project" assigned to them and these pop up less then a 2 seconds after&nbsp; ... </p><p>Send/Receive connectivity exception [ServiceActivationException] The requested service, 'http://&lt;servername&gt;/420b3019835344b986ad024c2a6695a8/PSI/WinProj.svc' could not be activated. See the server's diagnostic trace logs for more information. when sending/receiving message to app server <a href="http://<servername>/420b3019835344b986ad024c2a6695a8/PSI/WinProj.svc">http://&lt;servername&gt;/420b3019835344b986ad024c2a6695a8/PSI/WinProj.svc</a></p><p></p><p>Any thoughts or experience with this one? </p>

Approvals grid in PWA 2013 receives an exception for a user

$
0
0
I have a user that is no longer able to view their approvals from PWA 2013.  They are getting a General Unhandled Exception error instead.  Nothing is writing to the queue or the ULS logs when this occurs.  The message they are getting on the screen is "General Unhandled Exception in _Statusing.ReadStatusApprovalsForProjectForGridJson_".  Does anyone know how to fix this problem or identify what is causing it to occur?  There is no custom development at this time and everything is Out of the Box.  Thanks for any help anyone can provide.
Viewing all 7942 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>