Federal Contractor

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

Federal procurement profile for BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7, UEI MTKMVNVK1MH6) covering obligations, award volume, agencies, NAICS codes, and annual trends over the last 5 years.

Over the last 5 years, BECHTEL PLANT MACHINERY, INC. recorded 66 award actions with $9.15 billion obligated, averaging $138.7 million per action. Most activity was with the DEPT OF THE NAVY, and the largest share of spending was classified under NAICS 332410, Power Boiler and Heat Exchanger Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Award totals and counts are based on the provided analysis window and may not reflect unclassified or non-readable action details.

CAGE Code
4SVU7
UEI
MTKMVNVK1MH6
Total Obligated
9.15 billion
9,154,229,857.00
Award Actions
66
Average Action Value
138,700,452.37

About BECHTEL PLANT MACHINERY, INC. federal contract activity

BECHTEL PLANT MACHINERY, INC. recorded 66 FPDS awards totaling 9.15 billion over the last 5 years, with an average award value of 138.70 million. The profile is highly concentrated, with most obligated dollars flowing through a small number of awards and one dominant contracting agency.

Agency mix and customer concentration

The DEPT OF THE NAVY accounts for essentially all obligated spending, with 57 awards and 9.15 billion obligated. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in the award count with 9 awards but no obligated dollars, indicating an oversight or administrative role rather than direct funding.

Industry profile based on NAICS activity

Contracting activity is overwhelmingly concentrated in NAICS 332410, POWER BOILER AND HEAT EXCHANGER MANUFACTURING, which represents 9.15 billion across 58 awards. NAICS 336611, SHIP BUILDING AND REPAIRING, is a minor secondary line of business at 3.50 million across 3 awards, showing only limited diversification outside the core manufacturing category.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at 2.74 billion after rising from 1.36 billion in 2022 and 1.89 billion in 2023. Funding remained strong in 2025 at 810.32 million through 14 awards, while 2021 also reflected a high level of activity at 2.36 billion. Award counts ranged from 7 to 18 per year, suggesting materially larger average awards in the peak obligation years.

How to interpret this page

This summary is based on FPDS award records for the listed CAGE code and UEI within the last 5 years. Obligations are aggregated by vendor, agency, NAICS code, and fiscal year; all figures reflect reported obligated dollars and award counts from the provided dataset.

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 5 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 9,154,229,857.00 9.15 billion 57
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 9

Insight

Over the last 5 years, BECHTEL PLANT MACHINERY, INC. received 9.15 billion in obligations across 66 awards, with funding overwhelmingly concentrated in the DEPT OF THE NAVY. The Navy accounts for 57 awards and the full 9.15 billion obligated, indicating near-total dependence on a single agency relationship in this period. DCMA appears with 9 awards but no obligated dollars, suggesting administrative or oversight activity rather than funded procurement volume.

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 5 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 9,150,729,857.00 9.15 billion 58
336611 SHIP BUILDING AND REPAIRING 3,500,000.00 3.50 million 3

Insight

BECHTEL PLANT MACHINERY, INC. shows a highly concentrated NAICS profile over the last 5 years, with 332410, Power Boiler and Heat Exchanger Manufacturing, accounting for $9.15 billion across 58 awards, or effectively the entirety of reported obligations. A much smaller share is associated with 336611, Ship Building and Repairing, at $3.50 million across 3 awards, indicating limited diversification outside the primary manufacturing category. Overall, the award pattern reflects a dominant dependence on one NAICS code with only marginal activity in a secondary code.

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 5 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

Insight

Over the last 5 years, BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7) received $9.15 billion across 66 awards, averaging $138.7 million per award. Obligations were concentrated in 2024 ($2.74 billion, 18 awards) and 2021 ($2.36 billion, 11 awards), with lower levels in 2022 ($1.36 billion, 7 awards) and 2025 year-to-date ($810.3 million, 14 awards). The pattern indicates uneven annual funding with a peak in 2024 and a substantial decline in 2025 relative to prior high years.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.