Award Number

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

Federal procurement summary for award number HQ014717C0032 under agency ID 9700, covering the last 5 years of reported obligations and actions.

This page summarizes award number HQ014717C0032 for agency ID 9700 over the last 5 years. The award shows 85 actions and total obligated amount of $3.57 billion, with an average action value of $42.03 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts and counts reflect the provided analysis window and may differ from other FPDS views depending on filters and update timing.

Agency ID
9700
PIID
HQ014717C0032
Type
Award
Total Obligated
3.57 billion
3,572,677,756.07
Actions
85
Average Action Value
42,031,503.01

Overview

Award number HQ014717C0032 under agency ID 9700 records 85 reported actions in the last 5 years. Total obligated value is $3,572,677,756.07, which rounds to $3.57 billion, and the average action value is $42,031,503.01.

How to use this page

Use this page to review the scope of reported activity tied to award HQ014717C0032 and to compare its obligation totals and action frequency with other awards. The figures are limited to the stated 5-year analysis window and the provided FPDS inputs.

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 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) 3,572,677,756.07 3.57 billion 84
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for this award are heavily concentrated in the Missile Defense Agency (MDA), which accounts for $3.57 billion across 84 awards in the 5-year window. The only other agency listed, the Defense Contract Management Agency (DCMA), is associated with one award and no obligated dollars. This pattern indicates the award activity is overwhelmingly concentrated within MDA, with minimal cross-agency distribution.

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 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
LOCKHEED MARTIN CORPORATION 64059 3,572,677,756.07 3.57 billion 85

Insight

Over the 5-year window for award HQ014717C0032 under agency 9700, obligations are fully concentrated with a single vendor, Lockheed Martin Corporation (CAGE 64059). The vendor accounts for $3.57 billion across 85 awards, indicating a highly concentrated award distribution with repeated obligation activity to the same contractor. This pattern suggests sustained reliance on one supplier rather than a diversified vendor base.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 3,572,677,756.07 3.57 billion 85

Insight

Over the past 5 years, obligations for award HQ014717C0032 are concentrated entirely in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for the full $3.57 billion obligated across 85 awards, indicating a highly specialized and non-diversified award profile. The distribution suggests the award’s funding is tied to a single industrial base category rather than spread across multiple NAICS codes.

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 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
1410 GUIDED MISSILES 3,572,677,756.07 3.57 billion 85

Insight

Over the 5-year window for award HQ014717C0032, obligations are fully concentrated in PSC 1410, Guided Missiles, with $3.57 billion across 85 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within the same product category rather than a broad mix of commodities.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 highly concentrated in 2022, which accounts for $2.22 billion of the 5-year total and is materially above every other year. After 2022, obligations declined sharply in 2023 and 2024 to $200.35 million and $40.06 million, while award counts increased from 12 to 21, indicating more awards with substantially lower annual funding levels. In 2025, obligations rebounded to $731.93 million across 23 awards, but remain below the 2022 peak.

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.