Award Number

Award Number 9700 / HQ014719C0004 Federal Contract Action Summary (Last 5 Years)

Federal procurement record for award number HQ014719C0004 under agency ID 9700, showing obligations and actions over the last 5 years.

This page summarizes award number HQ014719C0004 for agency ID 9700 across the last 5 years. The award shows 176 actions and total obligated value of 2.40 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts shown here are based on the provided analysis window and reflect a total obligated exact value of 2401733132.21.

Agency ID
9700
PIID
HQ014719C0004
Type
Award
Total Obligated
2.40 billion
2,401,733,132.21
Actions
176
Average Action Value
13,646,210.98

Overview

Award number HQ014719C0004 is associated with agency ID 9700 and a 5-year obligated total of 2.40 billion. The award record includes 176 actions, with an average action value of 13,646,210.98 based on the provided totals. This page presents the award-level procurement history in a concise format for review and comparison.

How to use this page

Use this page to review the award's obligation trend and action volume within the last 5 years. The figures can support basic filtering, record matching, and comparison against other award numbers or agency records. The average action value provides a simple summary measure, but it should be interpreted alongside the full action history.

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 5 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) 2,401,733,132.21 2.40 billion 175
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award activity is highly concentrated in the Missile Defense Agency (MDA), which accounts for 175 awards and $2.40 billion in obligated value over the 5-year window. The Defense Contract Management Agency (DCMA) appears only once and carries no obligated value, indicating a negligible contribution relative to MDA. Overall, the obligation profile is overwhelmingly concentrated with MDA, with limited distribution across other agencies reflected in the provided rows.

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 5 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 2,401,733,132.21 2.40 billion 176

Insight

Over the 5-year window for award HQ014719C0004 under agency 9700, obligations are fully concentrated with The Boeing Company, CAGE 3A768, which accounts for $2.40 billion across 176 awards. This indicates a highly concentrated vendor profile with no distribution across additional vendors in the provided data. The volume of awards alongside the obligation amount suggests sustained reliance on a single supplier for this award record.

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 5 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) 2,401,733,132.21 2.40 billion 176

Insight

Over the 5-year window, all reported obligation for award HQ014719C0004 is concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology). This NAICS accounts for $2.40 billion across 176 actions, indicating a fully concentrated and consistently recurring procurement profile in a single industry category.

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 5 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 2,401,733,132.21 2.40 billion 176

Insight

Over the past 5 years, this award is concentrated entirely in PSC 1420, Guided Missile Components, with $2.40 billion obligated across 176 actions. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided results. The combination of a large obligated value and a relatively high action count suggests sustained contracting activity within a single product 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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 decline sharply across the 5-year window, falling from $1.32 billion in 2021 to $47.24 million in 2025. Award volume is also lower over time, decreasing from 45 awards in 2021 to 17 in 2025, with a brief rebound to 41 awards in 2023 before tapering again. The pattern indicates a high concentration of obligated dollars in 2021, followed by sustained contraction in both funding and award activity through 2025.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.