Award Number

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

Federal procurement analysis page for award number W31P4Q23C0005 under agency ID 9700, covering the last 10 years of recorded actions and obligations.

This page summarizes award number W31P4Q23C0005 for agency ID 9700 over the last 10 years. The award shows 78 actions and total obligated dollars of 2.21 billion, with an average action value of 28,382,597.86.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures reflect the provided exact obligated total of 2213842633.09 and the readable rounded total of 2.21 billion.

Agency ID
9700
PIID
W31P4Q23C0005
Type
Award
Total Obligated
2.21 billion
2,213,842,633.09
Actions
78
Average Action Value
28,382,597.86

Overview

Award number W31P4Q23C0005 is associated with agency ID 9700 and shows recorded activity across the last 10 years. The award has 78 actions and total obligated funding of 2,213,842,633.09, with an average action value of 28,382,597.86.

How to use this page

Use this page to review the award-level obligation profile and action count for W31P4Q23C0005. The figures provide a compact view of how recorded funding is distributed across the observed 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 = 'W31P4Q23C0005'
    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,213,842,633.09 2.21 billion 78

Insight

Obligations for PIID W31P4Q23C0005 are fully concentrated in a single top agency: the Department of the Army, with $2.21 billion across 78 awards over the 10-year window. This indicates that the award’s obligated value is not distributed across multiple agencies and is heavily concentrated within one agency relationship.

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 = 'W31P4Q23C0005'
        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 CORP 04939 2,213,842,633.09 2.21 billion 78

Insight

LOCKHEED MARTIN CORP is the sole listed top vendor for PIID W31P4Q23C0005 over the 10-year window, accounting for $2.21 billion across 78 awards. This indicates a highly concentrated obligation profile with all identified vendor activity tied to a single contractor. The volume of awards suggests repeated procurement actions, but no distribution can be assessed beyond this vendor from 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 = 'W31P4Q23C0005'
    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
336415 GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING 2,213,842,633.09 2.21 billion 78

Insight

Obligations for PIID W31P4Q23C0005 are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. Over the 10-year window, this NAICS accounts for $2.21 billion across 78 awards, indicating a highly concentrated procurement profile with recurring obligations in a single industrial classification. No other NAICS codes are present in the provided results, so diversification across NAICS categories is not evident.

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 = 'W31P4Q23C0005'
    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,213,842,633.09 2.21 billion 78

Insight

For PIID W31P4Q23C0005, obligations over the 10-year window are fully concentrated in PSC 1410, Guided Missiles. This PSC accounts for $2.21 billion across 78 awards, indicating a strong and sustained emphasis on a single product/service category rather than a diversified PSC mix. The concentration suggests this award is driven by a narrow mission requirement with limited spread across other PSCs.

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 = 'W31P4Q23C0005'
    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
2023 963,482,897.49 963.48 million 14
2024 529,735,097.22 529.74 million 38
2025 720,624,638.38 720.62 million 26

Insight

Obligations for PIID W31P4Q23C0005 are concentrated in three recent years, with the highest amount in 2023 at $963.48 million across 14 awards. Funding declined in 2024 to $529.74 million while award count rose to 38, indicating a broader distribution across more awards at a lower obligation level. In 2025, obligations rebounded to $720.62 million with 26 awards, but remained below the 2023 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.