TDV Adapter for Blackbaud Raisers Edge NXT

Build 22.0.8383

ConstituentCodes

Constituent codes define the high-level affiliations between constituents and your organization - such as Board member, Vendor, and Volunteer - to provide context for why constituents are in the database

Table Specific Information

Select

The adapter will use the Blackbaud Raiser's Edge NXT API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the adapter.

  • Id supports the '=' operator.
  • ConstituentId supports the '=' operator.
  • DateAdded supports the '>=,>' operators.
  • DateModified supports the '>=,>' operators.
  • IncludeInactive supports the '=' operator.
For example:
	
	SELECT * FROM ConstituentCodes WHERE Id = '144'

	SELECT * FROM ConstituentCodes WHERE ConstituentId = '280'
	
	SELECT * FROM ConstituentCodes WHERE DateAdded >= '1999-10-26T15:45:27'
	
	SELECT * FROM ConstituentCodes WHERE DateModified >= '1999-10-26T15:45:27'
	
	SELECT * FROM ConstituentCodes WHERE IncludeInactive = true
	

Columns

Name Type References Description
Id [KEY] String The immutable system record ID of the constituent code.
ConstituentId String

Constituents.Id

The immutable system record ID of the constituent associated with the constituent code.
DateAdded Datetime The date when the constituent code was created.
DateModified Datetime The date when the constituent code was last modified.
Description String The description of the constituent code.
Inactive Boolean This computed field indicates that the constituent code is active if the current date is after any start date and before any end date.
StartD Integer The start day of the constituent code.
StartM Integer The start month of the constituent code.
StartY Integer The start year of the constituent code.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
IncludeInactive Boolean This computed field indicates that the constituent code is active if the current date is after any start date and before any end date.

Copyright (c) 2022 CData Software, Inc. - All rights reserved.
Build 22.0.8383