Award Number

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

FPDS award record for award number W31P4Q24C0022 under agency ID 9700, showing obligations and action history over the last 10 years.

This page summarizes the federal procurement activity associated with award number W31P4Q24C0022 for agency ID 9700. Over the last 10 years, the award shows 42 actions and total obligated dollars of 7.75 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided 10-year analysis window, with exact obligated amount of 7750895873.03 and average action value of 184545139.83.

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

This award page presents the procurement record tied to award number W31P4Q24C0022. The available analysis window covers the last 10 years and includes 42 award actions, with total obligated dollars of 7750895873.03. The average action value across that period is 184545139.83.

How to use this page

Use this page to review obligation totals, action volume, and average action size for the award. It can support contract tracking, portfolio review, and quick comparison against other federal awards in the same agency context.

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

Insight

Over the 10-year window, obligations under PIID W31P4Q24C0022 are fully concentrated in a single top agency: the Department of the Army. The Army accounts for $7.75 billion across 42 awards, indicating all observed award activity in this view is tied to one agency rather than being distributed across multiple agencies. This pattern suggests a highly concentrated award profile with no diversification among top agencies in the provided data.

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

Insight

LOCKHEED MARTIN CORPORATION is the sole top vendor for this award over the 10-year window, with 42 awards totaling $7.75 billion. Obligations are fully concentrated with a single vendor, indicating no diversification across competing suppliers within the provided data. This level of concentration suggests sustained reliance on one contractor for the award.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 7,750,895,873.03 7.75 billion 42

Insight

The award’s obligated dollars are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $7.75 billion across 42 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across NAICS codes in the provided data. The volume of awards suggests repeated activity within the same industrial category, consistent with a sustained, specialized acquisition pattern.

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

Insight

Obligations for this award are fully concentrated in PSC 1410, Guided Missiles, totaling $7.75 billion across 42 awards/obligation records over the 10-year window. This indicates a highly focused procurement profile with no observable diversification into other product or service categories in the provided data. The concentration in a single PSC suggests the award is tied primarily to missile-related requirements rather than a mixed portfolio of supplies or services.

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 10 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 across 8 awards in 2024 to 4.78 billion across 34 awards in 2025. This indicates a higher award volume and a broader distribution of obligated funds in 2025, with activity expanding materially year over year. The 2025 period represents the dominant share of the two-year total and suggests a shift toward more frequent award actions rather than fewer, larger obligations.

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.