Award Number

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

Award number N0002424C2114 for Agency ID 9700 shows 4 award actions over the last 5 years with total obligations of 2.54 billion.

This page summarizes award number N0002424C2114 for Agency ID 9700 across the last 5 years. The record includes 4 actions and a total obligated amount of 2,542,667,076.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar amounts are based on the provided obligated totals and action counts for the last 5 years.

Agency ID
9700
PIID
N0002424C2114
Type
Award
Total Obligated
2.54 billion
2,542,667,076.00
Actions
4
Average Action Value
635,666,769.00

Overview

Award number N0002424C2114 is associated with Agency ID 9700 and records 4 award actions in the last 5 years. Total obligated funding is 2,542,667,076, with an average action value of 635,666,769. This gives a compact view of activity and funding scale for the award record.

How to use this page

Use this page to review the award’s obligation history, action count, and average action value for the selected analysis window. It is most useful for quick procurement reference, trend checks, and comparing this award record against others in the same agency context.

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 = 'N0002424C2114'
    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 2,542,667,076.00 2.54 billion 4

Insight

Over the 5-year window, obligation activity for PIID N0002424C2114 is fully concentrated within a single top agency, the Department of the Navy (agency ID 1700). The Navy accounts for $2.54 billion across 4 awards, indicating a narrow distribution of obligated funding for this award. This concentration suggests the award has been administered almost entirely within one agency rather than being spread 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 = 'N0002424C2114'
        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 2,542,667,076.00 2.54 billion 4

Insight

The award is highly concentrated: BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7) accounts for the full observed vendor obligation total in this 5-year window. Across 4 awards, the vendor received $2.54 billion, indicating a limited distribution of obligated value to a single contractor within this award context. This pattern suggests sustained reliance on one supplier rather than a broad vendor base.

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 = 'N0002424C2114'
    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 2,542,667,076.00 2.54 billion 4

Insight

Over the 5-year window, this award is fully concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing. The single NAICS accounts for $2.54 billion across 4 awards, indicating a narrow procurement profile with repeated obligation in one industrial 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 = 'N0002424C2114'
    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
1905 COMBAT SHIPS AND LANDING VESSELS 2,542,667,076.00 2.54 billion 4

Insight

Over the 5-year window for award N0002424C2114, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. The reported $2.54 billion across 4 awards indicates a narrow product-service mix with no other PSCs represented in this section. This concentration suggests the award activity is centered on a single ship-related procurement category rather than a diversified spend profile.

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 = 'N0002424C2114'
    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
2023 772,299,996.00 772.30 million 1
2024 876,608,528.00 876.61 million 1
2025 893,758,552.00 893.76 million 2

Insight

Obligations for PIID N0002424C2114 increased over the 5-year window shown, rising from $772.30 million in 2023 to $876.61 million in 2024 and $893.76 million in 2025. The award activity is highly concentrated, with one award in 2023 and 2024 and two awards in 2025, indicating limited distribution across actions. The year-over-year increases suggest a continued upward funding trend rather than broad-based expansion in award count.

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.