Tableau Connector for QuickBooks Time

Build 24.0.9175

CustomFieldItemFilters

Create, Update and Query the Custom Field Item Filters in QuickBooks Time.

Table Specific Information

Select

The connector 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 connector.
  • Id supports the =, IN operators.
  • Active supports the = operator.
  • JobCodeId supports the = operator.
  • UserId supports the = operator.
  • LastModified supports the <, <=, >, >= operators.
  • GroupId supports the = operator.
  • IncludeUserGroup supports the = operator.
  • IncludeJobCodeFilters supports the = operator.
  • SupplementalData supports the = operator.

For example, the following queries are processed server-side:

SELECT * FROM CustomFieldItemFilters
SELECT * FROM CustomFieldItemFilters WHERE Id = 11531340

Insert

When executing INSERT queries, specify the CustomFieldId, CustomFieldItemId, Active, AppliesTo, and AppliesToId 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 CustomFieldItemFilters (CustomFieldId, Name, ShortCode) VALUES (1140610, 15027812, true, 'jobcodes', 73209298)

Update

When executing Updates, specify the Id in the WHERE clause.

For example:

UPDATE CustomFieldItemFilters SET Active = true WHERE Id = '15011650' 

Columns

Name Type ReadOnly Description
Id [KEY] Integer True

Id of the CustomField Item filter.

CustomFieldId Integer False

Id of the CustomField that this filter belongs to.

CustomFieldItemId Integer False

Id of the CustomField item that this filter belongs to.

Active Boolean False

Boolean value. If true, the custom field item filter is active and if false, the custom field item filter is archive.

AppliesTo String False

Entity type this filter relates to. Together with applies_to_id, determines what this filtered item relates to. The possible values are: 'jobcodes', 'users', or 'groups'. For example: If this value was 'jobcodes' then the applies_to_id value would indicate which jobcode this filter referred to. If requested, the supplemental data will also contain this jobcode.

AppliesToId Integer False

The jobcode, user, or group that this filter relates to. Together with applies_to, determines what this filtered item relates to. For example: If the value of the applies_to field was 'jobcodes' this value would indicate which jobcode this filter referred to. If requested, the supplemental data will also contain this jobcode.

LastModified Datetime True

Date/time when this custom field item filter was last modified.

Pseudo-Columns

SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。

Name Type Description
JobCodeId Integer

Limits the returned filters to only those for the specified jobcode_id.

UserId Integer

Limits the returned filters to only those for the specified user_id. You can also include items for this user's group automatically if you include the 'include_user_group' parameter.

GroupId Integer

Limits the returned filters to only those for the specified group_id.

IncludeUserGroup Boolean

If a user_id is supplied, will return filters for that user's group as well.

IncludeJobCodeFilters Boolean

If a user_id is supplied, will additionally return jobcode filters.

SupplementalData Boolean

Default value is 'yes'. Indicates whether supplemental data should be specified.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175