Award Number

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

Federal award record for PIID W31P4Q15C0022 under Agency ID 9700, showing obligations and actions over the last 5 years.

This page summarizes the award identified by PIID W31P4Q15C0022 for Agency ID 9700 across the last 5 years. The record shows 184 actions and total obligated amounts of 725.66 million dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and use the exact obligated amount of 725,659,316.96 with an average action value of 3,943,800.64.

Agency ID
9700
PIID
W31P4Q15C0022
Type
Award
Total Obligated
725.66 million
725,659,316.96
Actions
184
Average Action Value
3,943,800.64

Overview

The award record for PIID W31P4Q15C0022 shows 184 recorded actions in the last 5 years. Total obligated amount is 725,659,316.96, which rounds to 725.66 million dollars, with an average action value of 3,943,800.64. This provides a concise view of obligation activity tied to Agency ID 9700.

How to use this page

Use this page to review the award's obligation volume and action history over the stated analysis window. The figures support basic procurement analysis, including tracking award activity, comparing average action value, and reviewing the scale of obligations associated with this PIID.

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 = 'W31P4Q15C0022'
    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 725,659,316.96 725.66 million 184

Insight

Over the 5-year window for award W31P4Q15C0022, all reported obligation is concentrated in a single agency: the Department of the Army. That agency accounts for $725.66 million across 184 awards, indicating a fully concentrated obligation profile with no additional agency-level distribution 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 = 'W31P4Q15C0022'
        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 725,659,316.96 725.66 million 184

Insight

RAYTHEON COMPANY accounts for the full 5-year obligation total for PIID W31P4Q15C0022, with $725.66 million across 184 awards. This indicates complete vendor concentration within the queried period, with obligations not distributed across multiple vendors in the provided dataset. The award pattern suggests repeated funding actions tied to a single contractor relationship.

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 = 'W31P4Q15C0022'
    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 725,659,316.96 725.66 million 184

Insight

Obligations are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $725.66 million across 184 awards over the 5-year window. This indicates the award is narrowly focused within a single industrial base rather than distributed across multiple NAICS sectors. The award count suggests repeated activity within the same line of effort, but no diversification is evident from the available 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 = 'W31P4Q15C0022'
    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
1425 GUIDED MISSILE SYSTEMS, COMPLETE 725,659,316.96 725.66 million 184

Insight

Obligations under this award are fully concentrated in PSC 1425, Guided Missile Systems, Complete, totaling $725.66 million across 184 actions over the 5-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award appears to be consistently associated with a single product/service category rather than a broad mix of 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 = 'W31P4Q15C0022'
    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
2021 548,347,217.76 548.35 million 56
2022 160,697,187.03 160.70 million 62
2023 11,006,246.63 11.01 million 46
2024 0.00 0.00 14
2025 5,608,665.54 5.61 million 6

Insight

Obligations for PIID W31P4Q15C0022 are heavily concentrated in 2021, when funding totaled $548.35 million across 56 awards, far exceeding all other years in the 5-year window. Obligations declined sharply in 2022 to $160.70 million and again in 2023 to $11.01 million, while award counts remained relatively elevated, indicating a shift toward smaller-dollar actions. In 2024, 14 awards were recorded with no obligated amount, and 2025 shows 6 awards totaling $5.61 million, consistent with continued low-dollar activity after the earlier peak.

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.