Award Number

Award Number 9700 / N0002419C2114 Federal Contract Action Summary (Last 10 Years)

Procurement summary for award number N0002419C2114 under agency ID 9700 covering the last 10 years.

This page summarizes award N0002419C2114 for agency ID 9700 over the last 10 years. The award shows 11 actions and total obligations of 3.38 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided exact obligation amount of 3,376,284,837 and the average action value of 306,934,985.18.

Agency ID
9700
PIID
N0002419C2114
Type
Award
Total Obligated
3.38 billion
3,376,284,837.00
Actions
11
Average Action Value
306,934,985.18

Overview

Award N0002419C2114 has 11 recorded actions in the last 10 years. Total obligated amounts to 3,376,284,837, with an average action value of 306,934,985.18.

How to use this page

Use this page to review the overall obligation level and action count for award N0002419C2114. It is a concise starting point for tracing procurement activity tied to agency ID 9700 over 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 = 'N0002419C2114'
    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,376,284,837.00 3.38 billion 11

Insight

Over the 10-year window for PIID N0002419C2114, obligations are fully concentrated in a single top agency: the Department of the Navy (agency 1700). This agency accounts for 11 awards totaling $3.38 billion, indicating that the award activity is highly concentrated rather than broadly distributed across multiple agencies. The absence of additional agencies in the provided rows suggests no diversification of obligated funding within this award record over the period reviewed.

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 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,376,284,837.00 3.38 billion 11

Insight

BECHTEL PLANT MACHINERY, INC. is the sole top vendor in this award’s 10-year window, accounting for $3.38 billion across 11 awards. This indicates highly concentrated vendor obligation within the award, with all observed obligation attributed to a single contractor in the provided data. The distribution suggests limited vendor diversification for this PIID over the period reviewed.

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 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,376,284,837.00 3.38 billion 11

Insight

Obligations on this award are concentrated entirely in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing, with $3.38 billion across 11 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award count suggests repeated activity within the same industrial classification rather than a broad mix of vendors or product areas.

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 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,376,284,837.00 3.38 billion 11

Insight

Obligations are highly concentrated in PSC 4470, Nuclear Reactors, with $3.38 billion across 11 awards over the 10-year window. This indicates the award activity is focused on a single product/service category rather than being broadly distributed across multiple PSCs. The concentration suggests this award record is driven primarily by 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 = 'N0002419C2114'
    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 634,011,726.00 634.01 million 2
2019 625,808,387.00 625.81 million 2
2020 397,611,585.00 397.61 million 1
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 concentrated in 2018–2022, with annual funding ranging from $397.61 million to $959.63 million and award counts between 1 and 3 per year. The highest obligation year was 2021 at $959.63 million across 3 awards, while 2020 was the lowest positive year at $397.61 million on 1 award. Activity then declined, with a negative obligation in 2023 of $9.27 million and no obligated value in 2025, indicating a tapering or adjustment period after the earlier funding peak.

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.