ProjectActivityReplies
Create, Update and Query the Project Activity Replies in QuickBooks Time.
Table Specific Information
Select
The 本製品 uses 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 operators.
- UserId supports the =, IN operators.
- ProjectActivityId supports the = operator.
- Active supports the = operator.
- LastModified supports the <, <=, >, >= operators.
- SupplementalData supports the = operator.
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
When executing INSERT queries, specify the ProjectActivityId and Note columns. The columns that are not required can be inserted optionally. The following is an example of how to insert into this table:
INSERT INTO ProjectActivityReplies (ProjectActivityId, Note) VALUES (8348382, 'Test')
Update
When executing UPDATE queries, specify the Id in the WHERE clause.
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 | False |
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. |