This page summarizes award number W31P4Q24C0024 for agency ID 9700 over the last full year. The award shows total obligations of 838.01 million across 6 actions, with an average action value of 139,668,333.33.
Award Number
Award Number 9700 / W31P4Q24C0024 Federal Contract Action Summary (Last Year)
Federal award page for award number W31P4Q24C0024 under agency ID 9700, summarizing last full year obligation and action activity.
Figures reflect the provided analysis window and obligation totals for this award; exact total obligated is 838,010,000.
Overview
In the last full year, award number W31P4Q24C0024 recorded 6 award actions and total obligations of 838.01 million. The exact obligated amount is 838,010,000, and the average action value is 139,668,333.33. These figures provide a concise view of award activity for agency ID 9700.
How to use this page
Use this page to review the scale of obligation and the pace of action activity for award W31P4Q24C0024. The summary supports quick comparison against other awards by showing the total obligated amount, action count, and average action value for the selected period.
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 1 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 | 838,010,000.00 | 838.01 million | 6 |
Insight
Within the 1-year window for award PIID W31P4Q24C0024 under agency 9700, obligations are fully concentrated in one top agency: the DEPT OF THE ARMY. This agency accounts for $838.01 million across 6 awards, indicating all listed obligated value in this view is associated with a single department rather than being distributed across multiple agencies. This concentration suggests a highly focused award profile within the queried scope.
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 1 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 | 838,010,000.00 | 838.01 million | 6 |
Insight
RAYTHEON COMPANY (CAGE 05716) accounts for 838.01 million in obligated value across 6 awards in the 1-year window for PIID W31P4Q24C0024. This indicates a highly concentrated vendor profile, with all observed obligated value in this section attributed to a single contractor. The distribution suggests limited vendor diversification within the reported award activity.
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 1 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 | 838,010,000.00 | 838.01 million | 6 |
Insight
Within the 1-year window, all reported obligations for PIID W31P4Q24C0024 are concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This category accounts for $838.01 million across 6 awards, indicating a fully concentrated industry profile for this award. No other NAICS codes are reported in the provided data, so diversification across industry categories is not present in this view.
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 1 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 | 838,010,000.00 | 838.01 million | 6 |
Insight
Obligations under PIID W31P4Q24C0024 are fully concentrated in PSC 1260, Fire Control Designating and Indicating Equipment, with $838.01 million across 6 awards over the 1-year window. This indicates a highly focused procurement profile with no diversification across PSCs in the provided data. The distribution suggests the award activity is centered on a single equipment category rather than spread across multiple product lines.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 838,010,000.00 | 838.01 million | 6 |
Insight
For PIID W31P4Q24C0024, the 1-year annual trend reflects $838.01 million obligated in 2025 across 6 awards, indicating a highly concentrated obligation profile. The average obligation per award is substantial, suggesting the funding was distributed across a small number of actions rather than broadly across many transactions. Because only one year is present in the window, no year-over-year trend can be assessed from the provided data.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.