Award Number

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

Procurement summary for award W31P4Q24C0024 under agency 9700, showing actions and obligations over the last 5 years.

This page summarizes award W31P4Q24C0024 for agency ID 9700 during the last 5 years. The award has 10 actions and $1.65 billion in total obligated amount.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals shown here are based on the provided readable and exact obligation figures for the last 5 years.

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 has 10 recorded actions in the last 5 years, with total obligated funds of 1,652,954,776. The average action value is 165,295,477.6, which reflects the scale of activity across the award period. This page is limited to the provided award identifier, agency ID 9700, and the stated analysis window.

How to use this page

Use this page to review the award-level obligation history and action count for W31P4Q24C0024. The figures support quick comparison of total obligated value and average action value within the last 5 years. No additional contract attributes are included beyond the supplied inputs.

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 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 1,652,954,776.00 1.65 billion 10

Insight

Obligations under PIID W31P4Q24C0024 in the 5-year window are fully concentrated in DEPT OF THE ARMY. The Army accounts for $1.65 billion across 10 awards, indicating a highly concentrated award profile with no other agencies represented in the provided data. This suggests the activity is dominated by a single agency relationship rather than a distributed interagency footprint.

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 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
RAYTHEON COMPANY 05716 1,652,954,776.00 1.65 billion 10

Insight

Over the 5-year window for PIID W31P4Q24C0024, obligations are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 05716). This vendor accounts for $1.65 billion across 10 awards, indicating a highly concentrated award distribution 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 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,652,954,776.00 1.65 billion 10

Insight

Over the last 5 years, obligations for award W31P4Q24C0024 are entirely concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This NAICS accounts for $1.65 billion across 10 awards, indicating a highly focused procurement profile with no diversification 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 = 'W31P4Q24C0024'
    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
1260 FIRE CONTROL DESIGNATING AND INDICATING EQUIPMENT 1,652,954,776.00 1.65 billion 10

Insight

Obligations for PIID W31P4Q24C0024 are fully concentrated in PSC 1260, Fire Control Designating and Indicating Equipment, with $1.65 billion across 10 awards over the 5-year window. This indicates a highly focused procurement pattern within a single product service code, with no evidence in the provided data of material PSC diversification.

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 5 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 are concentrated in two recent years, with 814.94 million across 4 awards in 2024 and 838.01 million across 6 awards in 2025. Total obligated value increased by 23.07 million year over year, while the award count also rose, indicating a modest expansion in both funding and distribution. The five-year trend available here is limited to these two years, but it shows sustained high obligation levels with relatively low award counts.

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.