This page summarizes federal procurement activity for award N0002424C2115 within Agency ID 9700 over the last 10 years. It shows a total obligated amount of 2.03 billion across 7 award actions, with an average action value of 290,369,822.57.
Award Number
Award Number 9700 / N0002424C2115 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number N0002424C2115 showing obligations, action history, and summary metrics for Agency ID 9700 over the last 10 years.
Totals reflect the provided analysis window and may differ from other reports if filters or time periods change.
Overview
Award number N0002424C2115 is associated with Agency ID 9700 in the last 10 years of FPDS activity. The record shows 7 award actions and total obligated spending of 2,032,588,758, with an average action value of 290,369,822.57. These figures provide a compact summary of the award's observed procurement footprint in the selected window.
How to use this page
Use this page to review the award-level obligation total and compare action volume against other awards in the same agency context. The action count and average action value help frame how spending was distributed across the recorded actions. For detailed review, compare this award against other FPDS records using the same analysis window and filters.
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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
All reported obligation for this award over the 10-year window is concentrated in a single agency, the Department of the Navy, which accounts for $2.03 billion across 7 awards. This indicates the award’s funding and activity are fully concentrated within one agency rather than distributed across multiple 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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| BECHTEL PLANT MACHINERY, INC. | 4SVU7 | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
All obligated funding in the 10-year window is concentrated with a single vendor, BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7), accounting for $2.03 billion across 7 awards under PIID N0002424C2115. This indicates a highly concentrated vendor distribution with no evidence of 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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 332410 | POWER BOILER AND HEAT EXCHANGER MANUFACTURING | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
Over the 10-year window, obligations for award N0002424C2115 are entirely concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing. This single NAICS code accounts for $2.03 billion across 7 awards, indicating a highly focused procurement pattern with no diversification reflected in the provided rows.
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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
Obligations under PIID N0002424C2115 are entirely concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $2.03 billion across 7 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The award count suggests multiple actions within the same product/service category rather than broad spending distribution.
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 = 'N0002424C2115'
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 |
|---|---|---|---|
| 2023 | 459,599,992.00 | 459.60 million | 1 |
| 2024 | 1,681,979,584.00 | 1.68 billion | 5 |
| 2025 | -108,990,818.00 | -108.99 million | 1 |
Insight
Obligations for PIID N0002424C2115 are highly concentrated in 2024, when 5 awards accounted for $1.68 billion, the clear peak across the period. In 2023, activity was limited to a single award totaling $459.60 million, indicating a much lower level of annual obligation. The 2025 entry shows one award with negative obligations of $108.99 million, which suggests a downward adjustment relative to prior years and a material reversal in the funding pattern.
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.