Federal Contractor

BAE SYSTEMS NORFOLK SHIP REPAIR INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for BAE SYSTEMS NORFOLK SHIP REPAIR INC. showing 10 years of awards, obligations, agencies, NAICS codes, and annual trends.

BAE SYSTEMS NORFOLK SHIP REPAIR INC. (CAGE 07243, UEI ERMDZBE4J8Q9) has 1,491 award actions totaling $3,267,556,530.60 over the last 10 years, with an average action value of $2,191,520.14. Most of the obligated value comes from the Department of the Navy, and the firm’s activity is concentrated in NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect readable FPDS obligation data for the selected 10-year window and may not capture every adjustment or current contract status.

CAGE Code
07243
UEI
ERMDZBE4J8Q9
Total Obligated
3.27 billion
3,267,556,530.60
Award Actions
1,491
Average Action Value
2,191,520.14

About BAE SYSTEMS NORFOLK SHIP REPAIR INC. federal contract activity

BAE SYSTEMS NORFOLK SHIP REPAIR INC. (CAGE 07243, UEI ERMDZBE4J8Q9) recorded 1,491 FPDS awards totaling $3.27 billion over the last 10 years, for an average award value of $2.19 million. The profile is highly concentrated, with most obligated value tied to a small number of large ship repair actions.

Agency mix and customer concentration

The Department of the Navy dominates the contract base, accounting for $3.27 billion across 1,421 awards and representing essentially all observed obligated value. Defense Logistics Agency and DCMA appear only as minor counterparties, with obligations of $1.09 million and $224.60 thousand respectively, indicating limited cross-agency diversification.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, overwhelmingly defines the vendor’s federal work, with $3.27 billion across 1,475 awards. The remaining NAICS activity is small and ancillary, led by Boat Building (336612), Bolt, Nut, Screw, Rivet, and Washer Manufacturing (332722), and Other Electronic Component Manufacturing (334419).

Annual contract trend over the analysis window

Annual obligations show variability but remain elevated, ranging from $92.03 million in 2021 to $588.10 million in 2022. After peaking in 2022, obligations fell in 2023, then rose again in 2024 and 2025, with 2025 totaling $303.02 million across 140 awards.

How to interpret this page

This summary is based on FPDS award records matched to CAGE 07243 and UEI ERMDZBE4J8Q9 for the last 10 years. Agency, NAICS, and annual figures reflect obligated dollars and award counts as provided in the analysis window and should be interpreted as FPDS-reported contract activity, not a complete measure of all vendor revenue.

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 = '07243'
        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 3,266,242,945.41 3.27 billion 1,421
97AS DEFENSE LOGISTICS AGENCY 1,088,986.19 1.09 million 14
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 224,599.00 224.60 thousand 56

Insight

Over the last 10 years, BAE SYSTEMS NORFOLK SHIP REPAIR INC. has received 3.27 billion across 1,491 awards, with obligations heavily concentrated in the Department of the Navy. The Navy accounts for 3.266 billion and 1,421 awards, indicating that essentially all of the vendor’s federal business is driven by Navy procurement activity. Defense Logistics Agency obligations are minimal at 1.09 million across 14 awards, and DCMA obligations are smaller still at 224.6 thousand across 56 awards, showing only limited activity outside the Navy.

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 = '07243'
        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
336611 SHIP BUILDING AND REPAIRING 3,266,324,320.41 3.27 billion 1,475
336612 BOAT BUILDING 679,021.00 679.02 thousand 10
332722 BOLT, NUT, SCREW, RIVET, AND WASHER MANUFACTURING 283,946.19 283.95 thousand 4
334419 OTHER ELECTRONIC COMPONENT MANUFACTURING 269,243.00 269.24 thousand 2

Insight

Over the last 10 years, BAE SYSTEMS NORFOLK SHIP REPAIR INC. derived nearly all obligated value from NAICS 336611, Ship Building and Repairing: $3.27 billion across 1,475 awards, representing essentially the full $3.27 billion total and 1,491 awards. The remaining NAICS codes were immaterial by comparison, with 336612 accounting for $679.02 thousand across 10 awards and the other two codes totaling less than $600 thousand combined. This indicates a highly concentrated contracting profile centered on ship repair and related maritime work, with limited diversification into other manufacturing categories.

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 = '07243'
        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 303,021,249.45 303.02 million 140
2024 353,507,232.48 353.51 million 128
2023 238,482,487.60 238.48 million 107
2022 588,103,690.75 588.10 million 96
2021 92,033,363.90 92.03 million 117
2020 347,015,588.06 347.02 million 101
2019 407,310,255.15 407.31 million 157
2018 475,091,171.15 475.09 million 255
2017 462,991,492.06 462.99 million 390

Insight

Over the last 10 years, BAE SYSTEMS NORFOLK SHIP REPAIR INC. (CAGE 07243) received $3.27 billion across 1,491 awards, averaging about $2.19 million per award. Obligations are unevenly distributed, with the largest annual share in 2022 at $588.10 million, followed by elevated levels in 2017 through 2019 and again in 2024–2025. Award volume peaked in 2017 at 390 actions, while 2025 has the highest count in the current period at 140 awards, indicating continued active contracting despite year-to-year fluctuations in obligated dollars.

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.