Award Number

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

Federal procurement analysis for award number HQ014717C0032 under agency ID 9700 over the last 10 years.

This page summarizes obligation and action history for award number HQ014717C0032. The record shows 120 award actions and total obligations of 9.09 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the last 10 years; total obligated exact is 9,085,374,043.82 and the average action value is 75,711,450.37.

Agency ID
9700
PIID
HQ014717C0032
Type
Award
Total Obligated
9.09 billion
9,085,374,043.82
Actions
120
Average Action Value
75,711,450.37

Overview

Award number HQ014717C0032 is associated with agency ID 9700 in the provided analysis window. The award record totals 120 actions and $9,085,374,043.82 in obligated value, with an average action value of $75,711,450.37.

How to use this page

Use this page to review the award-level obligation pattern, compare action count with total dollars, and assess how spending is distributed across the 10-year period. The summary is useful for FPDS-style review of award activity without adding assumptions beyond the reported data.

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 = 'HQ014717C0032'
    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) 9,085,374,043.82 9.09 billion 119
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Within the 10-year window for PIID HQ014717C0032, obligations are heavily concentrated in the Missile Defense Agency (MDA), which accounts for $9.09 billion across 119 awards. The Defense Contract Management Agency (DCMA) appears only once and shows no obligated value. This indicates the award activity and funding are overwhelmingly associated with MDA, with DCMA representing a minimal administrative or non-obligated presence.

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 = 'HQ014717C0032'
        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
LOCKHEED MARTIN CORPORATION 64059 9,085,374,043.82 9.09 billion 120

Insight

Over the 10-year window, obligations for PIID HQ014717C0032 are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 64059). The vendor accounts for 120 awards and $9.09 billion in total obligated value, indicating a highly concentrated award profile with no visible diversification in the provided data.

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 = 'HQ014717C0032'
    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 9,085,374,043.82 9.09 billion 120

Insight

For award HQ014717C0032 over the 10-year window, obligations are concentrated entirely in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $9.09 billion across 120 awards, indicating a highly focused procurement profile with no evidence of diversification in the provided data.

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 = 'HQ014717C0032'
    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 9,085,374,043.82 9.09 billion 120

Insight

Obligations are fully concentrated in PSC 1410, Guided Missiles, which accounts for the entire reported total of 9.09 billion across 120 awards in the 10-year window. This indicates a highly focused procurement profile for PIID HQ014717C0032, with no diversification across other PSCs in the provided data. The award pattern suggests sustained activity in a single mission category rather than a broadly distributed obligation base.

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 = 'HQ014717C0032'
    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
2017 826,614,843.00 826.61 million 8
2018 604,486,742.00 604.49 million 6
2019 2,802,844,637.63 2.80 billion 9
2020 1,278,750,065.12 1.28 billion 12
2021 380,618,328.04 380.62 million 11
2022 2,219,712,209.56 2.22 billion 12
2023 200,353,039.98 200.35 million 18
2024 40,061,095.00 40.06 million 21
2025 731,933,083.49 731.93 million 23

Insight

Obligations for PIID HQ014717C0032 are uneven across the 10-year window, with major concentration in 2019 ($2.80 billion) and 2022 ($2.22 billion), which together account for the largest annual spikes. Award count generally rises over time, increasing from 6–12 awards in earlier years to 18 in 2023 and 23 in 2025, while obligated dollars do not move in parallel. The pattern indicates a shift toward more frequent awards in the later years, but with materially lower annual obligation levels in 2023–2025 than the peak years.

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.