Award Number

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

Award number W31P4Q20C0023 for agency 9700 shows 333 actions over the last 5 years with $5.96 billion obligated.

This FPDS award page summarizes federal procurement activity for PIID W31P4Q20C0023 under agency ID 9700. Over the last 5 years, the award recorded 333 actions and $5,958,753,033.89 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated is shown as both a readable amount and the exact FPDS figure for the selected analysis window.

Agency ID
9700
PIID
W31P4Q20C0023
Type
Award
Total Obligated
5.96 billion
5,958,753,033.89
Actions
333
Average Action Value
17,894,153.25

Overview

The award record for W31P4Q20C0023 under agency ID 9700 covers 333 actions in the last 5 years. Total obligated value is $5,958,753,033.89, with an average action value of $17,894,153.25. These figures reflect the activity captured in the selected window only.

How to use this page

Use this page to review the scale and pacing of obligation activity tied to this award number. The action count, total obligated amount, and average action value provide a compact summary for comparing this award with other FPDS records.

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 = 'W31P4Q20C0023'
    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
2100 DEPT OF THE ARMY 5,958,753,033.89 5.96 billion 333

Insight

Over the 5-year window, obligations for PIID W31P4Q20C0023 are fully concentrated within a single top agency: the Department of the Army. The Army accounts for 333 awards and $5.96 billion in obligated value, indicating that this award activity is entirely associated with one agency and not distributed across multiple top agencies. This concentration suggests a highly focused funding pattern under the award.

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 = 'W31P4Q20C0023'
        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 5,958,753,033.89 5.96 billion 333

Insight

Obligations for PIID W31P4Q20C0023 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059), which accounts for $5.96 billion across 333 awards over the 5-year window. This indicates a highly concentrated award profile with no observed distribution across additional vendors in the provided data. The volume of awards suggests repeated funding activity, but all obligations remain tied to one recipient.

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 = 'W31P4Q20C0023'
    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 5,958,753,033.89 5.96 billion 333

Insight

Over the 5-year window, award PIID W31P4Q20C0023 is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $5.96 billion across 333 awards, indicating a highly concentrated obligation profile within a single industrial classification. The distribution provides no evidence of diversification across other NAICS categories for this award.

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 = 'W31P4Q20C0023'
    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 5,958,753,033.89 5.96 billion 333

Insight

Over the 5-year window, obligations under PIID W31P4Q20C0023 are fully concentrated in PSC 1410, Guided Missiles, with $5.96 billion across 333 awards. This indicates a highly focused spend profile with no evidence of PSC diversification in the provided data. The volume of awards paired with the full obligation concentration suggests this contract vehicle has been used repeatedly for the same product 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 = 'W31P4Q20C0023'
    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 940,998,762.32 941.00 million 24
2022 1,700,085,353.15 1.70 billion 41
2023 3,007,992,253.00 3.01 billion 67
2024 194,920,862.16 194.92 million 110
2025 114,755,803.26 114.76 million 91

Insight

Obligations for PIID W31P4Q20C0023 were heavily concentrated in 2021 through 2023, rising from 941.00 million in 2021 to 1.70 billion in 2022 and peaking at 3.01 billion in 2023. Award counts also increased over this period, from 24 to 67, indicating both larger and more numerous awards. In 2024 and 2025, obligated amounts declined sharply to 194.92 million and 114.76 million, while award counts remained elevated at 110 and 91, suggesting a shift to a higher number of lower-dollar actions.

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.