This award record summarizes 333 actions tied to PIID W31P4Q15C0022 during the last 10 years. Total obligated amount is 4.43 billion, with an average action value of 13,311,627.36.
Award Number
Award Number 9700 / W31P4Q15C0022 Federal Contract Action Summary (Last 10 Years)
Federal procurement analysis page for award number W31P4Q15C0022 under agency ID 9700, covering obligations and action activity over the last 10 years.
Amounts are based on the provided analysis window and reported obligated totals for this award.
Overview
Award W31P4Q15C0022 is associated with agency ID 9700 and shows 333 recorded actions in the last 10 years. The total obligated amount is 4,432,771,910.35, which corresponds to a readable total of 4.43 billion. The average action value is 13,311,627.36.
How to use this page
Use this page to review award-level obligation totals and action volume for W31P4Q15C0022 within the selected 10-year window. The figures support basic trend review, comparison with related awards, and identification of high-level procurement activity for agency ID 9700.
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 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 | 4,432,771,910.35 | 4.43 billion | 332 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations under PIID W31P4Q15C0022 are highly concentrated in the DEPT OF THE ARMY, which accounts for 4.43 billion across 332 awards. The only other agency activity in the 10-year window is a single award associated with DCMA and no obligated value. This distribution indicates that the award has been overwhelmingly Army-focused, with negligible spend attributable to other agencies.
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 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 | 4,172,935,704.82 | 4.17 billion | 329 |
| RAYTHEON COMPANY | 259,836,205.53 | 259.84 million | 4 |
Insight
Obligations under PIID W31P4Q15C0022 are highly concentrated with RAYTHEON COMPANY, which accounts for 4.17 billion across 329 awards under CAGE 05716. A smaller additional set of awards is also attributed to RAYTHEON COMPANY without a CAGE code, totaling 259.84 million across 4 awards. This pattern indicates sustained vendor concentration with a limited amount of obligation recorded under a separate vendor identifier entry.
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 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 | 4,432,771,910.35 | 4.43 billion | 333 |
Insight
Obligations for this award are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $4.43 billion across 333 actions over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The volume of actions alongside the dollar concentration suggests sustained support for a single industrial sector rather than a broad mix of acquisition categories.
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 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 |
|---|---|---|---|---|
| 1425 | GUIDED MISSILE SYSTEMS, COMPLETE | 4,432,771,910.35 | 4.43 billion | 333 |
Insight
Obligations for PIID W31P4Q15C0022 are fully concentrated in PSC 1425, Guided Missile Systems, Complete, with $4.43 billion obligated across 333 awards. This indicates a highly focused procurement pattern centered on a single product service category rather than a diversified mix of PSCs. The volume of awards alongside the obligation total suggests sustained activity within this category over the 10-year window.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 259,836,205.53 | 259.84 million | 3 |
| 2017 | 730,304,654.31 | 730.30 million | 15 |
| 2018 | 1,681,747,423.19 | 1.68 billion | 42 |
| 2019 | 525,613,558.40 | 525.61 million | 49 |
| 2020 | 509,610,751.96 | 509.61 million | 40 |
| 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 were highly concentrated in 2017–2021, peaking in 2018 at $1.68 billion, with elevated activity also in 2017 and 2021. After 2021, obligated dollars declined sharply, falling to $160.70 million in 2022, $11.01 million in 2023, and $0 in 2024, before a modest $5.61 million in 2025. Award counts remained active through the period and reached a high of 62 in 2022, indicating continued transaction volume despite the steep reduction in obligated dollars.
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.