This award record tracks federal procurement activity for PIID N0002419C2115 under agency ID 9700. Over the last 10 years, it reflects 12 award actions with total obligated dollars of 3,004,573,964.
Award Number
Award Number 9700 / N0002419C2115 Federal Contract Action Summary (Last 10 Years)
Award number N0002419C2115 for agency ID 9700 shows obligations of 3.00 billion across 12 actions over the last 10 years.
Total obligated amounts are shown as both readable and exact values; the average action value is 250,381,163.67.
Overview
The award number N0002419C2115 is associated with agency ID 9700 and, in the analysis window provided, records 12 award actions. Total obligations are 3,004,573,964, which rounds to 3.00 billion, and the average action value is 250,381,163.67. This page summarizes the award at the contract level using only the supplied FPDS data points.
How to use this page
Use this page to review the scale and cadence of obligations tied to award N0002419C2115. The action count and average action value help frame how the total obligation was distributed across the 10-year window. The figures here are limited to the inputs provided and do not add contract details beyond those values.
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 = 'N0002419C2115'
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 | 3,004,573,964.00 | 3.00 billion | 12 |
Insight
Obligations for PIID N0002419C2115 over the 10-year window are fully concentrated within the DEPT OF THE NAVY. The award is associated with 12 reported actions totaling $3.00 billion, indicating a highly concentrated obligation pattern with no other agencies represented in the provided rows. This distribution suggests the contract’s activity has remained within a single agency context throughout the period.
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 = 'N0002419C2115'
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 | 3,004,573,964.00 | 3.00 billion | 12 |
Insight
Obligations under PIID N0002419C2115 are highly concentrated in a single vendor over the 10-year window. BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7) accounts for $3.00 billion across 12 awards, indicating a sustained and dominant share of funded activity. This pattern suggests limited vendor diversification for this award record.
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 = 'N0002419C2115'
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 | 3,004,573,964.00 | 3.00 billion | 12 |
Insight
Obligations for award PIID N0002419C2115 under agency 9700 are concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing. This category accounts for $3.00 billion across 12 awards over the 10-year window, indicating a clear concentration of spend in a single industrial classification. No other NAICS codes are provided in this result, so broader distribution across industries cannot be assessed from this row alone.
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 = 'N0002419C2115'
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 |
|---|---|---|---|---|
| 4470 | NUCLEAR REACTORS | 3,004,573,964.00 | 3.00 billion | 12 |
Insight
PSC 4470 (Nuclear Reactors) accounts for the full reported obligated amount in this 10-year view, totaling $3.00 billion across 12 awards. Obligations are fully concentrated in a single PSC, indicating no diversification across product or service categories within the provided data. This pattern suggests the award activity is highly focused on nuclear reactor-related procurement.
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 = 'N0002419C2115'
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 |
|---|---|---|---|
| 2018 | 889,949,558.00 | 889.95 million | 2 |
| 2019 | 31,801,007.00 | 31.80 million | 1 |
| 2020 | 662,216,798.00 | 662.22 million | 1 |
| 2021 | 621,969,749.00 | 621.97 million | 1 |
| 2022 | 456,176,165.00 | 456.18 million | 1 |
| 2023 | 340,600,687.00 | 340.60 million | 3 |
| 2024 | 1,860,000.00 | 1.86 million | 2 |
| 2025 | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID N0002419C2115 were heavily concentrated in 2018, when total obligated amount reached 889.95 million across 2 awards, the peak year in the 10-year window. After 2018, annual obligations declined unevenly but remained substantial through 2023, ranging from 31.80 million to 662.22 million, with a modest increase in award count in 2023 (3 awards). Activity then dropped sharply in 2024 to 1.86 million and fell to zero in 2025, indicating a pronounced end-of-period decline.
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.