Award Number

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

Federal procurement summary for award number W31P4Q24C0022 under agency ID 9700, covering actions in the last 5 years.

This page summarizes award W31P4Q24C0022 for agency ID 9700 over the last 5 years. It reflects 42 award actions and total obligated amounts of 7.75 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated values are shown as both readable and exact figures, with average action value calculated across 42 actions.

Agency ID
9700
PIID
W31P4Q24C0022
Type
Award
Total Obligated
7.75 billion
7,750,895,873.03
Actions
42
Average Action Value
184,545,139.83

Overview

The award record for W31P4Q24C0022 shows 42 actions within the last 5 years and total obligated funding of 7,750,895,873.03. The average action value is 184,545,139.83, which indicates a high-value award with repeated obligation activity over the period.

How to use this page

Use this page to review the award’s total obligated amount, action count, and average action value in one place. It is useful for procurement analysis, award-level tracking, and comparing this obligation pattern with other federal awards.

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 = 'W31P4Q24C0022'
    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 7,750,895,873.03 7.75 billion 42

Insight

Within the 5-year window for award PIID W31P4Q24C0022, obligations are fully concentrated in a single top agency: the Department of the Army. The Army accounts for $7.75 billion across 42 awards, indicating a highly concentrated funding pattern with no diversification across other agencies in the provided rows. This level of concentration suggests the award activity is driven primarily by 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 = 'W31P4Q24C0022'
        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 7,750,895,873.03 7.75 billion 42

Insight

Over the 5-year window, LOCKHEED MARTIN CORPORATION (CAGE 64059) accounts for the entirety of reported obligations for PIID W31P4Q24C0022, with $7.75 billion across 42 awards. This indicates highly concentrated vendor activity and no observed distribution across additional vendors 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 = 'W31P4Q24C0022'
    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 7,750,895,873.03 7.75 billion 42

Insight

Over the 5-year window, obligations for award W31P4Q24C0022 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $7.75 billion across 42 awards, indicating a highly focused procurement profile with no diversity across other NAICS codes 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 = 'W31P4Q24C0022'
    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 7,750,895,873.03 7.75 billion 42

Insight

Obligations under PIID W31P4Q24C0022 are fully concentrated in PSC 1410 (Guided Missiles), with $7.75 billion obligated across 42 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided data. The award activity is spread across multiple actions, but funding remains concentrated in a single product service code, suggesting sustained emphasis on guided missile requirements.

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 = 'W31P4Q24C0022'
    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
2024 2,975,298,031.03 2.98 billion 8
2025 4,775,597,842.00 4.78 billion 34

Insight

Obligations on PIID W31P4Q24C0022 increased from 2.98 billion in 2024 across 8 awards to 4.78 billion in 2025 across 34 awards. The activity is more widely distributed in 2025, with both award count and obligated amount rising materially year over year. This indicates a shift from fewer, larger obligations in 2024 to a broader pattern of obligation activity in 2025.

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.