Award Number

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

Federal procurement overview for award W31P4Q23C0036 under agency ID 9700, showing obligations and action activity over the last 10 years.

This page summarizes the award identified by PIID W31P4Q23C0036 for agency ID 9700 across the last 10 years. The award totals $1,607,872,304.74 in obligated funding across 26 actions, with an average action value of $61,841,242.49.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the stated analysis window and the provided obligated total, action count, and average action value.

Agency ID
9700
PIID
W31P4Q23C0036
Type
Award
Total Obligated
1.61 billion
1,607,872,304.74
Actions
26
Average Action Value
61,841,242.49

Overview

The award record for PIID W31P4Q23C0036 shows 26 actions over the last 10 years. Total obligated funding is $1,607,872,304.74, which provides a direct view of the award's scale within agency ID 9700.

How to use this page

Use this page to review the award's obligation total, action volume, and average action value in one place. It is suited for procurement analysis that needs a concise award-level summary tied to the provided analysis window.

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 = 'W31P4Q23C0036'
    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 1,607,872,304.74 1.61 billion 25
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Over the 10-year window, obligations are highly concentrated with the DEPT OF THE ARMY, which accounts for $1.61 billion across 25 awards. The only other listed agency, DCMA, has a single award with no obligated amount, indicating negligible funding distribution outside the Army. This pattern suggests the award’s obligated value has been overwhelmingly 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 = 'W31P4Q23C0036'
        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
RAYTHEON COMPANY 05716 1,607,872,304.74 1.61 billion 26

Insight

RAYTHEON COMPANY is the only vendor listed in this 10-year top_vendors view for award PIID W31P4Q23C0036, indicating full concentration of obligated spending with a single contractor. The vendor received 26 awards totaling $1.61 billion, which suggests a sustained and material procurement relationship rather than isolated transactions.

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 = 'W31P4Q23C0036'
    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 1,607,872,304.74 1.61 billion 26

Insight

Obligations for this award are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $1.61 billion across 26 actions over the 10-year window. This indicates a highly focused procurement profile tied to a single industrial classification rather than a diversified obligation mix. The award’s funding pattern suggests sustained activity within this NAICS category over time.

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 = 'W31P4Q23C0036'
    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
1420 GUIDED MISSILE COMPONENTS 1,607,872,304.74 1.61 billion 26

Insight

Over the 10-year window, obligations on this award are fully concentrated in PSC 1420, Guided Missile Components, with $1.61 billion obligated across 26 awards. This indicates a narrow procurement profile centered on a single product/service category rather than a diversified mix of PSCs. The concentration suggests sustained spending in this component area is the primary driver of obligational activity for PIID W31P4Q23C0036.

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 = 'W31P4Q23C0036'
    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 50,760,840.45 50.76 million 3
2024 934,536,269.83 934.54 million 6
2025 622,575,194.46 622.58 million 17

Insight

Obligations for PIID W31P4Q23C0036 are highly concentrated in the most recent years, increasing from 50.76 million across 3 awards in 2023 to 934.54 million across 6 awards in 2024. In 2025, obligated value declined to 622.58 million, but award count increased to 17, indicating broader distribution across more actions. Overall, the 10-year window reflects a sharp step-up in both volume and value after 2023, with peak obligated dollars in 2024.

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.