This page summarizes award activity for PIID N0002419C2114 over the last 5 years. The award shows 6 actions and total obligated amounts of 1.72 billion, with an average action value of 286,475,523.17.
Award Number
Award Number 9700 / N0002419C2114 Federal Contract Action Summary (Last 5 Years)
Federal procurement analysis for award number N0002419C2114 under agency ID 9700, covering the last 5 years of award actions and obligations.
Total obligated is shown as 1,718,853,139 and the readable form is rounded to 1.72 billion.
Overview
The award record for N0002419C2114 under agency ID 9700 reflects 6 award actions within the last 5 years. Across those actions, total obligated funding is 1,718,853,139, with an average action value of 286,475,523.17.
How to use this page
Use this page to review the scale of obligation activity tied to award number N0002419C2114 and to compare action-level funding over the analysis window. The figures support procurement review, contract monitoring, and trend checks at the award level.
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 = 'N0002419C2114'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,718,853,139.00 | 1.72 billion | 6 |
Insight
Over the past 5 years, obligations associated with PIID N0002419C2114 are concentrated entirely within one top agency: the Department of the Navy (agency 1700). The Navy accounts for $1.72 billion across 6 awards, indicating a highly concentrated obligation profile with all reported activity tied to a single agency. This distribution suggests the award is narrowly scoped and agency-specific rather than broadly dispersed 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 = 'N0002419C2114'
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 |
|---|---|---|---|---|
| BECHTEL PLANT MACHINERY, INC. | 4SVU7 | 1,718,853,139.00 | 1.72 billion | 6 |
Insight
Obligations for this award are fully concentrated with BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7), which accounts for $1.72 billion across 6 awards over the 5-year window. This indicates a highly concentrated vendor profile with no other vendors listed in the provided data. The award structure suggests sustained reliance on a single contractor for this procurement action.
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 = 'N0002419C2114'
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 |
|---|---|---|---|---|
| 332410 | POWER BOILER AND HEAT EXCHANGER MANUFACTURING | 1,718,853,139.00 | 1.72 billion | 6 |
Insight
All reported obligations for PIID N0002419C2114 in the 5-year window are concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing. The award reflects 6 actions totaling $1.72 billion, indicating full concentration in a single industry classification with no diversification across other NAICS codes in the provided 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 = 'N0002419C2114'
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 |
|---|---|---|---|---|
| 4470 | NUCLEAR REACTORS | 1,718,853,139.00 | 1.72 billion | 6 |
Insight
Obligations under PIID N0002419C2114 are fully concentrated in PSC 4470, Nuclear Reactors, with $1.72 billion across 6 awards over the 5-year window. This indicates a narrow procurement profile centered on a single product service code, with no diversification across other PSCs in the provided data. The concentration suggests this award activity is tightly aligned to reactor-related 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 = 'N0002419C2114'
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 | 959,633,759.00 | 959.63 million | 3 |
| 2022 | 768,485,104.00 | 768.49 million | 1 |
| 2023 | -9,265,724.00 | -9.27 million | 1 |
| 2025 | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID N0002419C2114 are heavily concentrated in 2021 and 2022, when the award accounted for 959.63 million across 3 actions and 768.49 million across 1 action, respectively. Activity drops sharply in 2023 to a net deobligation of 9.27 million and remains flat in 2025 with 0 obligated. Over the five-year window, the pattern indicates that most funding was obligated early in the period, with limited subsequent action and one negative adjustment.
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.