TimeSheetLines
Retrieve and modify timesheet lines.
Table Specific Information
Insert
The following is an example of inserting into the TimeSheetLines table:
INSERT INTO TimeSheetLines (PeriodId, Comment, LineClass, TaskName) VALUES ('f13d5bef-efd3-ef11-bbe3-00155df02906', 'TestComment', 1, 'Testing Purposes');
Columns
| Name | Type | ReadOnly | References | Required | Description |
| Id [KEY] | String | False | False | ||
| Comment | String | False | False | ||
| LineClass | Int | False | False | ||
| ProjectName | String | False | False | ||
| Status | Int | False | False | ||
| TaskName | String | False | False | ||
| TotalWork | String | False | False | ||
| TotalWorkMilliseconds | Int | False | False | ||
| TotalWorkTimeSpan | Time | False | False | ||
| ValidationType | Int | False | False | ||
| Assignment_Id | String | True | False | ||
| TimeSheet_Id | String | True | False | ||
| LinkedAssignment | String | False | False | ||
| LinkedTimeSheet | String | False | False | ||
| LinkedWork | String | False | False | ||
| PeriodId [KEY] | String | True | False |
Id of the parent. This column only supports equality (=) and IN filters. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| InsertMode | String |
Determines the Insert Mode. Set to 'ADD' to use standard MSProject Add function. This is the default and is recommended. Set to 'ODATA' to use standard ODATA insert functionality. This input is only applicable during inserts. The value set in this input overrides the value set in the InsertMode connection property (see the documentation page for the InsertMode connection property for more information). |