Award Number

Award Number 9700 / HQ085120C0002 Federal Contract Action Summary (Last 10 Years)

Federal procurement award page for award number HQ085120C0002 under agency ID 9700, covering activity over the last 10 years.

This page summarizes the award history for PIID HQ085120C0002 across the last 10 years. It shows 194 award actions with total obligations of 2.15 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals shown here are based on the provided analysis window and may reflect rounding in the readable total.

Agency ID
9700
PIID
HQ085120C0002
Type
Award
Total Obligated
2.15 billion
2,146,629,345.49
Actions
194
Average Action Value
11,065,099.72

Overview

The award number HQ085120C0002 is associated with agency ID 9700 and shows 194 recorded actions in the last 10 years. Total obligated dollars for the period are 2,146,629,345.49, with an average action value of 11,065,099.72.

How to use this page

Use this page to review the award-level obligation trend and the volume of recorded actions over the selected period. The figures provide a compact reference for comparing this award with other procurement records in the same agency and time window.

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 = 'HQ085120C0002'
    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) 2,146,629,345.49 2.15 billion 126
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 68

Insight

Obligations are highly concentrated in the Missile Defense Agency (MDA), which accounts for $2.15 billion across 126 awards over the 10-year window. The Defense Contract Management Agency (DCMA) appears frequently in the award record with 68 awards but no obligated dollars, indicating a substantial administrative or oversight presence without direct funding attachment. Overall, the award activity is split between one dollar-bearing agency and one zero-obligation agency, with funding overwhelmingly concentrated in MDA.

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 = 'HQ085120C0002'
        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
RAYTHEON COMPANY 15090 2,146,629,345.49 2.15 billion 194

Insight

RAYTHEON COMPANY accounts for the full top-vendor concentration for PIID HQ085120C0002 over the 10-year window, with $2.15 billion obligated across 194 awards. This pattern indicates a highly concentrated vendor profile, with obligations and award activity centered on a single contractor rather than distributed across multiple suppliers. The volume of awards alongside the large obligated total suggests sustained, repeated procurement activity with this vendor.

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 = 'HQ085120C0002'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 2,146,629,345.49 2.15 billion 194

Insight

Obligations for PIID HQ085120C0002 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. Over the 10-year window, this category accounts for $2.15 billion across 194 awards, indicating a highly focused industrial base for this action. No other NAICS codes are reflected in the provided rows, so the distribution shown here is singular rather than diversified.

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 = 'HQ085120C0002'
    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
1410 GUIDED MISSILES 2,146,629,345.49 2.15 billion 194

Insight

Obligations under PIID HQ085120C0002 are fully concentrated in PSC 1410, Guided Missiles, totaling $2.15 billion across 194 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other product or service categories in the provided data. The award count suggests repeated procurement activity within the same PSC rather than a broad mix of spend categories.

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 = 'HQ085120C0002'
    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
2020 1,061,536,852.73 1.06 billion 17
2021 376,205,044.00 376.21 million 12
2022 452,175,582.87 452.18 million 33
2023 252,054,303.68 252.05 million 43
2024 753,943.00 753.94 thousand 27
2025 3,903,619.21 3.90 million 62

Insight

Obligations for PIID HQ085120C0002 are heavily concentrated in 2020, when $1.06 billion was obligated across 17 awards, far exceeding all later years in the 10-year window. Annual obligated amounts then declined to $376.21 million in 2021 and $452.18 million in 2022, before falling further to $252.05 million in 2023 and dropping sharply to $753.94 thousand in 2024. Award counts increased after 2021, peaking at 62 in 2025, but obligations remained low at $3.90 million, indicating a shift toward higher award volume with materially lower annual dollars.

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.