Award Number

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

Federal award record for award number W31P4Q17C0006 under agency ID 9700, covering obligations over the last 10 years.

This page summarizes award number W31P4Q17C0006 for agency ID 9700 across the last 10 years. The record shows 216 award actions with total obligated dollars of 2.90 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from point-in-time contract reporting due to timing and record updates.

Agency ID
9700
PIID
W31P4Q17C0006
Type
Award
Total Obligated
2.90 billion
2,902,949,654.19
Actions
216
Average Action Value
13,439,581.73

Overview

This award record centers on PIID W31P4Q17C0006 and shows a total obligated amount of 2,902,949,654.19 over the last 10 years. The award has 216 actions, yielding an average action value of 13,439,581.73. These figures provide a concise view of the award's obligation volume and action frequency.

How to use this page

Use this page to review the award's obligation history, action count, and average action value within the stated analysis window. It is useful for identifying the scale of funding associated with the award and for comparing this record with other awards under 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 = 'W31P4Q17C0006'
    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
2100 DEPT OF THE ARMY 2,902,949,654.19 2.90 billion 212
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations for PIID W31P4Q17C0006 are highly concentrated with the DEPT OF THE ARMY, which accounts for $2.90 billion across 212 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 4 awards but no obligated value, indicating administrative or non-obligating activity rather than funded spend. Overall, the award history is overwhelmingly associated with the Army, with no meaningful obligated distribution to other agencies 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 = 'W31P4Q17C0006'
        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 2,191,194,410.22 2.19 billion 214
LOCKHEED MARTIN CORPORATION 711,755,243.97 711.76 million 2

Insight

Obligations for PIID W31P4Q17C0006 are highly concentrated in LOCKHEED MARTIN CORPORATION, which accounts for $2.19 billion across 214 awards under CAGE 64059. A separate LOCKHEED MARTIN CORPORATION entry with no CAGE code recorded adds another $711.76 million across 2 awards, indicating additional obligation volume not tied to the coded vendor record. Overall, the award history is dominated by a single vendor name, with obligations heavily skewed toward one primary CAGE-linked record and a smaller set of uncoded records.

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 = 'W31P4Q17C0006'
    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
336419 OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 2,902,949,654.19 2.90 billion 216

Insight

Obligations for PIID W31P4Q17C0006 are fully concentrated in NAICS 336419, with $2.90 billion obligated across 216 awards over the 10-year window. This indicates a highly focused procurement pattern centered on other guided missile and space vehicle parts and auxiliary equipment manufacturing, with no visible diversification across additional NAICS codes in the provided data. The award count suggests repeated procurement activity within the same industrial classification rather than a broad mix of categories.

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 = 'W31P4Q17C0006'
    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,902,949,654.19 2.90 billion 216

Insight

Obligations under PIID W31P4Q17C0006 in the 10-year window are fully concentrated in PSC 1410, Guided Missiles, with 2.90 billion across 216 awards. This indicates a highly specialized procurement profile with no observable PSC diversification in the provided data. The award activity is distributed across multiple actions, but all reported obligations remain within the same 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 = 'W31P4Q17C0006'
    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
2016 711,755,243.97 711.76 million 2
2017 1,319,342,176.23 1.32 billion 17
2018 901,763,614.97 901.76 million 42
2019 54,003,991.32 54.00 million 50
2020 1,507,302.00 1.51 million 39
2021 -26,077,904.06 -26.08 million 19
2022 -0.01 -0.01 17
2023 0.00 0.00 7
2024 -25,571,598.96 -25.57 million 15
2025 -33,773,171.27 -33.77 million 8

Insight

Obligations under PIID W31P4Q17C0006 were highly concentrated in the earlier years of the 10-year window, with 2017 at 1.32 billion, 2018 at 901.76 million, and 2016 at 711.76 million, followed by a sharp decline after 2019. Award activity broadened in count even as dollars fell, peaking at 50 awards in 2019 before dropping to low-to-moderate annual counts from 2020 through 2025. From 2021 forward, net obligations were negative or near zero, including -26.08 million in 2021, -25.57 million in 2024, and -33.77 million in 2025, indicating post-award deobligations or closeout adjustments rather than new funding growth.

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.