Federal Contractor

BECHTEL PLANT MACHINERY, INC. Federal Contract Obligations (Last 10 Years)

BECHTEL PLANT MACHINERY, INC. federal contract profile covering obligations, agencies, NAICS codes, and annual trends over the last 10 years.

BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7, UEI MTKMVNVK1MH6) recorded 125 award actions with $15.32 billion obligated in the last 10 years. Most activity came from the Department of the Navy, with obligations concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals shown here cover the five most recent years in the analysis window, and one NAICS row includes a negative obligation value as reported in the source data.

CAGE Code
4SVU7
UEI
MTKMVNVK1MH6
Total Obligated
15.32 billion
15,315,220,005.00
Award Actions
125
Average Action Value
122,521,760.04

About BECHTEL PLANT MACHINERY, INC. federal contract activity

BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7, UEI MTKMVNVK1MH6) recorded $15.32 billion in obligated contract value across 125 awards over the last 10 years, for an average award value of $122.52 million. The profile indicates a highly concentrated federal spend relationship rather than a broad, diversified buyer base.

Agency mix and customer concentration

The Department of the Navy accounts for essentially all observed obligated value, with 116 awards totaling $15.32 billion. DCMA appears as a secondary awarding agency by count with 9 awards, but those actions carry no obligated value in the provided data, indicating administrative or oversight activity rather than funded procurement volume.

Industry profile based on NAICS activity

Contracting is overwhelmingly concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing, which represents $15.30 billion across 103 awards. Smaller activity appears in 336611, Ship Building and Repairing, at $11.11 million across 11 awards, while 335999 shows a small negative obligated amount, which should be treated as an adjustment or deobligation rather than new procurement volume.

Annual contract trend over the analysis window

Annual obligations remain in the multi-billion-dollar range, peaking in 2024 at $2.74 billion after $1.89 billion in 2023 and $1.36 billion in 2022. The 2025 total of $810.32 million across 14 awards suggests lower current-year throughput so far, though the period may be incomplete.

How to interpret this page

This summary is based on FPDS award records tied to the listed CAGE code and UEI over the last 10 years. Totals, averages, agency shares, NAICS mixes, and annual trend values reflect the fields provided; negative obligated amounts are preserved as reported and may reflect deobligations or adjustments.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4SVU7'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
1700 DEPT OF THE NAVY 15,315,220,005.00 15.32 billion 116
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 9

Insight

Over the last 10 years, BECHTEL PLANT MACHINERY, INC. received $15.32 billion across 125 awards, with obligations heavily concentrated in the DEPT OF THE NAVY. The Navy accounted for $15.32 billion across 116 awards, representing essentially all obligated dollars in this period. DCMA shows 9 awards with $0 obligated, indicating administrative or non-obligating activity rather than funded award value.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4SVU7'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
332410 POWER BOILER AND HEAT EXCHANGER MANUFACTURING 15,304,640,448.00 15.30 billion 103
336611 SHIP BUILDING AND REPAIRING 11,107,728.00 11.11 million 11
335999 ALL OTHER MISCELLANEOUS ELECTRICAL EQUIPMENT AND COMPONENT MANUFACTURING -528,171.00 -528.17 thousand 1

Insight

Over the last 10 years, BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7) shows extreme concentration in NAICS 332410, POWER BOILER AND HEAT EXCHANGER MANUFACTURING, with $15.30 billion obligated across 103 awards, representing nearly all of the vendor’s $15.32 billion total. The only other material activity is in NAICS 336611, SHIP BUILDING AND REPAIRING, at $11.11 million across 11 awards, which is immaterial relative to the primary category. NAICS 335999 appears as a single award with a small negative obligated amount (-$528.17 thousand), indicating a minor adjustment rather than a recurring line of business.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4SVU7'
        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 DESC
Year Total Obligated Readable Award Actions
2025 810,324,805.00 810.32 million 14
2024 2,736,095,667.00 2.74 billion 18
2023 1,892,669,721.00 1.89 billion 16
2022 1,359,295,455.00 1.36 billion 7
2021 2,355,844,209.00 2.36 billion 11
2020 1,677,280,938.00 1.68 billion 10
2019 1,491,657,724.00 1.49 billion 10
2018 2,099,683,156.00 2.10 billion 14
2017 892,368,330.00 892.37 million 25

Insight

BECHTEL PLANT MACHINERY, INC. has obligated $15.32 billion across 125 awards over the last 10 years, with an average award value of about $122.5 million, indicating a highly concentrated, high-dollar award profile. Obligations were strongest in 2024 at $2.74 billion, followed by 2021 at $2.36 billion and 2018 at $2.10 billion, showing periodic spikes rather than a steady growth pattern. Annual award counts are relatively modest and uneven, ranging from 7 to 25 awards, with 2017 having the highest count but the lowest annual obligation in the period.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.