This page summarizes federal procurement activity for award number HQ014719C0004 under agency ID 9700. The record shows 258 award actions with total obligated dollars of $4,438,727,467.75.
Award Number
Award Number 9700 / HQ014719C0004 Federal Contract Action Summary (Last 10 Years)
Award number HQ014719C0004 for agency 9700 shows 258 recorded award actions over the last 10 years and $4.44 billion in total obligations.
Figures reflect the last 10 years of available award activity and use the exact obligated total of $4,438,727,467.75.
Overview
Award number HQ014719C0004 is associated with 258 action records in the last 10 years. Total obligated value is $4,438,727,467.75, with an average action value of $17,204,370.03.
How to use this page
Use this page to review the scale and pace of obligation activity tied to HQ014719C0004. The figures support basic trend review, volume checks, and comparison against other awards in agency ID 9700.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
agency_id,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 97JC | MISSILE DEFENSE AGENCY (MDA) | 4,438,727,467.75 | 4.44 billion | 256 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations are highly concentrated in the MISSILE DEFENSE AGENCY (MDA), which accounts for $4.44 billion across 256 awards. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 2 awards and no obligated dollars recorded. Overall, the award history for PIID HQ014719C0004 in the 10-year window is dominated by MDA activity, with negligible dollar distribution to other listed agencies.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| BOEING COMPANY, THE | 3A768 | 4,438,727,467.75 | 4.44 billion | 258 |
Insight
The award is fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 3A768), which accounts for $4.44 billion in obligated value across 258 awards over the 10-year window. This indicates a highly concentrated vendor distribution with no evidence of diversification within the provided data. The volume of awards, paired with the magnitude of obligations, suggests sustained reliance on this contractor for the identified award.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
naics_code,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 541714 | RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) | 4,438,727,467.75 | 4.44 billion | 258 |
Insight
Over the 10-year window, obligations for award HQ014719C0004 are fully concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology). This NAICS accounts for $4.44 billion across 258 awards, indicating a sustained and highly focused procurement profile rather than a distributed mix of industry sectors. The data suggest the award activity is consistently tied to biotechnology R&D.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 1420 | GUIDED MISSILE COMPONENTS | 4,438,727,467.75 | 4.44 billion | 258 |
Insight
Within the 10-year window for award HQ014719C0004, all reported obligation is concentrated in PSC 1420, Guided Missile Components. The award accounts for $4.44 billion across 258 awards, indicating a highly focused spending profile with no diversification across other PSCs in the provided data. This concentration suggests the award activity is consistently tied to a single product/service category.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2019 | 1,063,960,988.23 | 1.06 billion | 34 |
| 2020 | 973,033,347.31 | 973.03 million | 48 |
| 2021 | 1,315,452,767.57 | 1.32 billion | 45 |
| 2022 | 530,419,568.50 | 530.42 million | 37 |
| 2023 | 339,677,238.80 | 339.68 million | 41 |
| 2024 | 168,948,029.14 | 168.95 million | 36 |
| 2025 | 47,235,528.20 | 47.24 million | 17 |
Insight
Obligations for PIID HQ014719C0004 were concentrated in the earlier years of the window, peaking at $1.32 billion in 2021 after $1.06 billion in 2019 and $973.03 million in 2020. After 2021, annual obligations declined sharply to $530.42 million in 2022, $339.68 million in 2023, $168.95 million in 2024, and $47.24 million in 2025. Award counts remained relatively steady through 2024, ranging from 34 to 48 awards, then fell to 17 in 2025, indicating reduced activity alongside lower obligation levels.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.