Federal Contractor

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. Federal Contract Obligations (Last Year)

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. recorded 283 federal award actions totaling $416.97 million in the last full year, led by Department of the Navy obligations.

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. (CAGE 57701, UEI ZMBFGXHLGLM3) received $416,972,734.92 in obligated federal awards across 283 actions in the last full year. Nearly all activity came from the Department of the Navy, with ship building and repairing accounting for the bulk of obligations.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the last full year and are based on obligated amounts by awarding agency, NAICS, and year.

CAGE Code
57701
UEI
ZMBFGXHLGLM3
Total Obligated
416.97 million
416,972,734.92
Award Actions
283
Average Action Value
1,473,401.89

About BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. federal contract activity

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. (CAGE 57701, UEI ZMBFGXHLGLM3) received 416.97 million across 283 awards in the last full year, for an average award value of 1.47 million. The vendor’s activity is heavily concentrated in federal maritime maintenance and repair work, with one agency and one primary industry code accounting for nearly all obligated dollars.

Agency mix and customer concentration

The DEPT OF THE NAVY accounted for 416.79 million across 281 awards, representing virtually all observed obligations to this vendor. The remaining activity was limited to two small awards: 122.20 thousand from the DEFENSE LOGISTICS AGENCY and 64.96 thousand from the U.S. COAST GUARD.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, dominated the vendor’s profile with 414.77 million across 269 awards. Smaller obligations were recorded under NAICS 333618, Other Engine Equipment Manufacturing, at 2.08 million across 13 awards, and NAICS 326191, Plastics Plumbing Fixture Manufacturing, at 122.20 thousand in one award.

Annual contract trend over the analysis window

The annual trend for 2025 shows 416.97 million in obligated dollars across 283 awards. With only one year in the analysis window, this page reflects a point-in-time funding profile rather than a multi-year trajectory.

How to interpret this page

This summary uses FPDS award records associated with the vendor’s CAGE code 57701 and UEI ZMBFGXHLGLM3 for the last full year. Obligated dollars, award counts, agency mix, and NAICS mix are based on reported FPDS transaction data; totals may differ from later revisions or records outside the selected analysis window.

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 = '57701'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 416,785,582.92 416.79 million 281
97AS DEFENSE LOGISTICS AGENCY 122,196.00 122.20 thousand 1
7008 U.S. COAST GUARD 64,956.00 64.96 thousand 1

Insight

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. received 283 awards totaling $416.97 million in the last full year, indicating a highly concentrated federal spending profile. The Department of the Navy accounted for $416.79 million across 281 awards, or nearly all obligated dollars and activity, making it the dominant buying agency by a wide margin. The remaining obligations were minimal and dispersed across two agencies: the Defense Logistics Agency at $122.20 thousand and the U.S. Coast Guard at $64.96 thousand, each with one award.

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 = '57701'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 414,774,694.54 414.77 million 269
333618 OTHER ENGINE EQUIPMENT MANUFACTURING 2,075,844.38 2.08 million 13
326191 PLASTICS PLUMBING FIXTURE MANUFACTURING 122,196.00 122.20 thousand 1

Insight

BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. shows extreme NAICS concentration in the last full year: NAICS 336611, Ship Building and Repairing, accounts for 414.77 million of 416.97 million obligated, or roughly 99.5% of total obligations, across 269 of 283 awards. The remaining obligations are minimal and dispersed across two NAICS codes—333618 at 2.08 million and 326191 at 122.2 thousand—indicating limited diversification outside the firm’s core ship repair work. Average award value was 1.47 million, consistent with a contract profile dominated by high-dollar ship repair actions.

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 = '57701'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 416,972,734.92 416.97 million 283

Insight

During the last full year, BAE SYSTEMS SAN DIEGO SHIP REPAIR INC. recorded $416.97 million in obligated value across 283 awards, for an average award value of about $1.47 million. With only one year reflected in the window, no multi-year trend can be assessed from this section. The volume of awards suggests obligations were distributed across multiple actions rather than concentrated in a single award.

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