ProjectActivityReplies
Create, Update and Query the Project Activity Replies in TSheets.
Table Specific Information
Select
Query the ProjectActivityReplies table. The 本製品 will use the QuickBooks Time API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the 本製品.
- Id supports the '=,IN'
- UserId supports the '=,IN'
- ProjectActivityId supports the '='
- Active supports the '='
- LastModified supports the '<,<=,>,>='
- SupplementalData supports the '='
For example, the following queries are processed server side:
SELECT * FROM ProjectActivityReplies WHERE ProjectActivityId = 8348378 SELECT * FROM ProjectActivityReplies WHERE ProjectActivityId = 8348378 AND Id = 2062894
Insert
Insert can be executed by specifying ProjectActivityId and Note column. The columns that are not required can be inserted optionally. Following is an example of how to insert into this table
INSERT INTO ProjectActivityReplies (ProjectActivityId, Note) VALUES (8348382, 'Test')
Update
Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE ProjectActivityReplies SET Note = 'updated' WHERE Id = '2062894'
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
Id of the Project Activity Replies. |
ProjectActivityId | Integer | False |
Id of the associated Project Activity. |
UserId | Integer | True |
Id of the associated user. |
Note | String | False |
Content of note. |
Active | Boolean | False |
Boolean value. If false, this project activity reply is considered archive. |
Created | Datetime | True |
Date/time when this project note was created. |
LastModified | Datetime | True |
Date/time when this project note was last modified. |
Mentions | String | True |
Mentions. |
LinkedObjects | String | True |
A key/value map of all the objects linked to this project and the corresponding object ids. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
SupplementalData | Boolean |
Default value is 'yes'. Indicates whether supplemental data should be specified. |