Award Number

Award Number 9700 / N0002419C2115 Federal Contract Action Summary (Last 5 Years)

Award-level procurement summary for award number N0002419C2115 under agency ID 9700 covering the last 5 years.

This page summarizes procurement activity for award number N0002419C2115 over the last 5 years. The award shows 8 actions with total obligated amount of 1.42 billion and an average action value of 177,575,825.13.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures reflect the provided readable total of 1.42 billion and exact total obligated amount of 1,420,606,601.

Agency ID
9700
PIID
N0002419C2115
Type
Award
Total Obligated
1.42 billion
1,420,606,601.00
Actions
8
Average Action Value
177,575,825.13

Overview

The award record for N0002419C2115 includes 8 observed actions in the last 5 years. Total obligated value is 1,420,606,601, with a readable total of 1.42 billion and an average action value of 177,575,825.13.

How to use this page

Use this page to review award-level obligation volume and action count for N0002419C2115. The figures support a quick assessment of how much value was recorded across the analysis window for agency ID 9700.

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 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,420,606,601.00 1.42 billion 8

Insight

Over the 5-year window, obligations for PIID N0002419C2115 are fully concentrated with the DEPT OF THE NAVY (agency 1700), which accounts for $1.42 billion across 8 awards. This indicates a highly concentrated award distribution with no other agencies represented in the provided rows. The pattern suggests the award activity is exclusively Navy-associated for this 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 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,420,606,601.00 1.42 billion 8

Insight

Over the 5-year window, obligations under PIID N0002419C2115 are fully concentrated with a single vendor, BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7), which accounts for $1.42 billion across 8 awards. This indicates a highly concentrated award distribution with no competing vendors reflected 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 = 'N0002419C2115'
    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,420,606,601.00 1.42 billion 8

Insight

The award is fully concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing, which accounts for the entire reported 5-year obligated value of $1.42 billion across 8 awards. This indicates a narrow industrial focus with all observed obligations aligned to a single NAICS code rather than a diversified mix of contracting activity. The concentration suggests the award portfolio for this PIID is highly specialized within this manufacturing category.

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 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,420,606,601.00 1.42 billion 8

Insight

Over the past 5 years, obligations under PIID N0002419C2115 are fully concentrated in PSC 4470, Nuclear Reactors, with $1.42 billion across 8 awards. This indicates a narrow procurement profile centered on a single product service category, with no diversification across other PSCs in the provided data. The award count suggests multiple obligations within the same category rather than a broad mix of procurement types.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 are heavily concentrated in the earlier years of the 5-year window, with 2021 and 2022 accounting for the largest annual amounts at $621.97 million and $456.18 million, respectively. Annual obligated amounts then decline materially in 2023 to $340.60 million and fall sharply in 2024 to $1.86 million, indicating a pronounced downward trend in funding activity. Award counts are highest in 2023 at 3 awards, but the later years show lower obligated value despite multiple awards in 2024 and one award in 2025.

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.