ProjectDataSet.ProjectRow.PROJ_STALE_FLAGS Property
Indicates which fields are not updated by Project Server scheduling.
Namespace: [Statusing Web service]
Service reference: http://ServerName:32843/[Project Service Application GUID]/PSI/Statusing.svc
Web service reference: http://ServerName/ProjectServerName/_vti_bin/PSI/Statusing.asmx?wsdl
Syntax
'Declaration
Public Property PROJ_STALE_FLAGS As Integer
Get
Set
'Usage
Dim instance As ProjectDataSet.ProjectRow
Dim value As Integer
value = instance.PROJ_STALE_FLAGS
instance.PROJ_STALE_FLAGS = value
public int PROJ_STALE_FLAGS { get; set; }
Property Value
Type: System.Int32
Remarks
Read-only. Used to calculate the flags that indicate stale data in the MSP_EpmProject table in the Reporting database. The bitwise OR operator combines the values. For example, a value of 5 means that the project rollup and the WBS data are stale; a value of 63 means that all six values are stale (1 | 2 | 4 | 8 | 16 | 32 = 63).
1 = ProjectWbsIsStale
2 = ProjectEarnedValueIsStale
4 = ProjectRollupsAreStale
8 = ProjectHierarchyNotSynchronized
16 = ProjectCalculationsAreStale
32 = ProjectGhostTaskAreStale
See Also
Reference
ProjectDataSet.ProjectRow Class