TS_ACT_VALUE Calculation in Project Server - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T11:22:09Zhttp://stackoverflow.com/feeds/question/421309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/421309/tsactvalue-calculation-in-project-server1TS_ACT_VALUE Calculation in Project Serverjohn2009-01-07T17:58:46Z2009-03-22T15:08:08Z
<p>I am trying to use c# to create timesheet entries in Project Server and running across a problem with saving the number of hours for the timesheet line on a certain day. if i look at the dataset there is a property for TS_ACT_VALUE and if i use 1 hour it shows 60000, does anyone know what the calculation is used to get that or another method of saving the number of hours worked on a timesheet line item</p>
<p>Thanks</p>
http://stackoverflow.com/questions/421309/tsactvalue-calculation-in-project-server/436270#4362700Answer by Scott Ivey for TS_ACT_VALUE Calculation in Project ServerScott Ivey2009-01-12T17:39:11Z2009-01-12T17:39:11Z<p>John,</p>
<p>Per the documentation at <a href="http://msdn.microsoft.com/en-us/library/websvctimesheet.timesheetdataset.actualsrow.ts_act_value.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/websvctimesheet.timesheetdataset.actualsrow.ts_act_value.aspx</a> the TS_ACT_VALUE column "represents the actual cost recorded for this timesheet line item."</p>
http://stackoverflow.com/questions/421309/tsactvalue-calculation-in-project-server/504809#5048090Answer by JC for TS_ACT_VALUE Calculation in Project ServerJC2009-02-02T20:44:01Z2009-02-02T20:44:01Z<p>I am aware of the actual definition of the column but was more interested in how they get the calculation for it. when i look at sample data the column is divisible by 1000</p>
http://stackoverflow.com/questions/421309/tsactvalue-calculation-in-project-server/671149#6711490Answer by Brainthegrinch for TS_ACT_VALUE Calculation in Project ServerBrainthegrinch2009-03-22T15:08:08Z2009-03-22T15:08:08Z<p>it simply because the time is reprensented in milisecond... simply multiply your value in a hour by 60000 </p>