How to updateTimeSheet in ms project server - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T11:09:54Zhttp://stackoverflow.com/feeds/question/669522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/669522/how-to-updatetimesheet-in-ms-project-server0How to updateTimeSheet in ms project serverBrainthegrinch2009-03-21T16:06:35Z2009-03-27T16:03:29Z
<p>Here's the situation, i want to have a user that can enter time on behalf of other (programmaticaly).</p>
<p>When i do QueueUpdateTimeSheet a web service of ms project server, it doesn't work if a try to enter time for an other. </p>
<p>I try the impersonification but i need to know the username and password of the person that i want to impersonate. I could have those information but i don't want to manage it. </p>
<p>I start to look at surrogate timesheet. I don't know if this will be the respond to my problem.</p>
<p>Can anybody help me ...</p>
http://stackoverflow.com/questions/669522/how-to-updatetimesheet-in-ms-project-server/690364#6903642Answer by Luji for How to updateTimeSheet in ms project serverLuji2009-03-27T16:03:29Z2009-03-27T16:03:29Z<p>There's no magic method that lets you surrogate timesheet as far as I know. If you want to be able to use QueueUpdateTimesheet's method on behalf of other users, you'll have to "hack" a bit your DataSet. </p>
<p>Be aware that you need to do the prerequisite to impersonate the user (<a href="http://msdn.microsoft.com/en-us/library/aa974413.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa974413.aspx</a>). Once its all done you can proceed ;)</p>
<p>First of all, retreive your timesheetRow: </p>
<pre><code>Proxy.TimesheetListDataSet.TimesheetsRow tsFound = null;
foreach (Proxy.TimesheetListDataSet.TimesheetsRow ts in ds.Timesheets)
{
if (ts.WPRD_START_DATE <= day.Date && ts.WPRD_FINISH_DATE > day.Date)
{
tsFound = ts;
break;
}
}
</code></pre>
<p>Then retrieve the timesheet dataSet:</p>
<pre><code>Proxy.TimesheetDataSet tds = timesheetSvc.ReadTimesheet(tsFound.TS_UID);
</code></pre>
<p>Then perform this to enable surrogating:</p>
<pre><code>if (Boolean.Parse(tds.Headers.Rows[0]["TS_IS_CONTROLLED_BY_OWNER"].ToString()) == true)
{
tds.Headers.Rows[0]["TS_IS_CONTROLLED_BY_OWNER"] = false;
tds.Headers.Rows[0]["TS_CREATOR_RES_UID"] = "[SUPER USER GUID]"
}
</code></pre>
<p>Finally push the updated dataSet:</p>
<pre><code>timesheetSvc.QueueUpdateTimesheet(Guid.NewGuid(), tsFound.TS_UID, updatedTimesheetDataSet);
</code></pre>
<p>Hope it helps!</p>
<p>Farewell</p>