Award Number

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

Federal procurement summary for award number W31P4Q24C0024 under agency ID 9700, covering the last 10 years of recorded actions.

This page summarizes obligation activity for award W31P4Q24C0024 across the last 10 years. The award shows 10 actions and total obligated spending of 1.65 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated exact value is 1,652,954,776, and the average action value is 165,295,477.6.

Agency ID
9700
PIID
W31P4Q24C0024
Type
Award
Total Obligated
1.65 billion
1,652,954,776.00
Actions
10
Average Action Value
165,295,477.60

Overview

Award W31P4Q24C0024 is associated with agency ID 9700 and shows activity across a 10-year analysis window. The record contains 10 award actions and total obligated funding of 1,652,954,776. The average action value is 165,295,477.6.

How to use this page

Use this page to review the obligation pattern tied to award number W31P4Q24C0024 and compare action count with total funding. The figures shown are limited to the provided analysis window and reported award-level totals.

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 = 'W31P4Q24C0024'
    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,652,954,776.00 1.65 billion 10

Insight

Obligations under PIID W31P4Q24C0024 are fully concentrated in a single top agency, the Department of the Army. Over the 10-year window, this entity accounts for $1.65 billion across 10 awards, indicating a highly concentrated award profile with no diversification across other agencies in the provided rows.

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 = 'W31P4Q24C0024'
        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,652,954,776.00 1.65 billion 10

Insight

Obligations for PIID W31P4Q24C0024 are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 05716). Across the 10-year window, this vendor accounted for $1.65 billion across 10 awards, indicating a highly concentrated award pattern with no diversification among top 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 = 'W31P4Q24C0024'
    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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,652,954,776.00 1.65 billion 10

Insight

Obligations under PIID W31P4Q24C0024 are fully concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This category accounts for $1.65 billion across 10 awards over the 10-year window, indicating a narrow and highly focused procurement profile. No other NAICS codes are represented in the provided data, so there is no observable diversification across industry sectors in this award record.

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 = 'W31P4Q24C0024'
    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
1260 FIRE CONTROL DESIGNATING AND INDICATING EQUIPMENT 1,652,954,776.00 1.65 billion 10

Insight

Obligations for award W31P4Q24C0024 are fully concentrated in PSC 1260, Fire Control Designating and Indicating Equipment. The award records 10 actions totaling $1.65 billion over the 10-year window, indicating a highly focused procurement profile with no visible diversification across other PSCs in the provided data.

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 = 'W31P4Q24C0024'
    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 814,944,776.00 814.94 million 4
2025 838,010,000.00 838.01 million 6

Insight

Obligations for PIID W31P4Q24C0024 were concentrated in 2024 and 2025, with funding rising from $814.94 million across 4 awards in 2024 to $838.01 million across 6 awards in 2025. The higher 2025 total is accompanied by a larger award count, indicating a modest expansion in distribution rather than a single-award concentration. Across the two years, obligations remained consistently high, with only a small year-over-year increase.

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.