CCR Exception
Human-readable value for the vendor's CCR exception status on an IDV record. This field indicates whether the vendor had a Central Contractor Registration exception and is typically stored as a coded or abbreviated string rather than a free-text explanation.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter IDVs involving CCR exceptions
- Group awards by vendor registration exception status
- Support compliance and data quality reviews
Common Mistakes
- Assuming the value is a numeric measure instead of a coded attribute
- Using it without checking the paired description or valid code values
Query Guidance
Use equality predicates for exact code matching and include this field in GROUP BY when analyzing exception prevalence. If the data is sparse or inconsistently coded, join to the source description or map observed values before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__vendor__CCRException AS c_c_r_exception
FROM fpds.data
WHERE content__IDV__vendor__CCRException IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__CCRException AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__CCRException IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.