Federal Contractor

L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. (CAGE 0GCL4, UEI CM2HHAV628D5) covering obligations and award activity over the last 5 years.

L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. received 964 award actions worth $1,311,493,199.69 in the last 5 years, with most obligations coming from the Department of the Air Force. Spending is concentrated in aircraft parts and aircraft manufacturing, led by NAICS 336413 and 336411.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last 5 years of FPDS award action data and may include multiple actions under the same contract or order.

CAGE Code
0GCL4
UEI
CM2HHAV628D5
Total Obligated
1.31 billion
1,311,493,199.69
Award Actions
964
Average Action Value
1,360,470.12

About L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. federal contract activity

L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. (CAGE 0GCL4, UEI CM2HHAV628D5) recorded 964 FPDS awards totaling 1.31 billion over the last 5 years, with an average award value of 1.36 million. The obligation profile is highly concentrated in defense-related aerospace procurement, indicating a sustained role in complex systems manufacturing and support. The award count and dollar volume suggest a mix of high-value production and follow-on support actions rather than a small number of isolated transactions.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE dominates the relationship, accounting for 1.14 billion across 523 awards and representing the clear center of gravity in this vendor's federal business. The DEPT OF THE NAVY is a distant second at 111.62 million across 156 awards, followed by the U.S. COAST GUARD at 48.36 million across 34 awards and NOAA at 9.16 million across 16 awards. DCMA appears frequently by award count, but with only 541.91 thousand obligated, indicating administrative or low-dollar actions rather than major funded requirements.

Industry profile based on NAICS activity

The NAICS profile is led by 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, with 939.44 million across 289 awards, followed by 336411, Aircraft Manufacturing, with 254.28 million across 466 awards. Together, these categories account for the vast majority of obligations and point to an aerospace hardware-centered portfolio. Smaller concentrations in 488190 and 541330 show some support and engineering activity, while 334220 is present at a limited scale.

Annual contract trend over the analysis window

Annual obligations peaked sharply in 2023 at 741.20 million, far above the surrounding years, making that year the clear outlier in the five-year window. Obligations then fell to 106.29 million in 2024 and rose to 136.96 million in 2025, while 2021 and 2022 were comparatively stable at 162.93 million and 164.11 million. Award counts remained substantial across all years, which suggests the 2023 spike was driven primarily by larger-dollar awards rather than a collapse in transaction volume.

How to interpret this page

This summary is based on FPDS obligations associated with the vendor's CAGE code 0GCL4 and UEI CM2HHAV628D5 over the last 5 years. Agency, NAICS, and annual views are ranked by total obligated dollars, with award counts used to contextualize transaction volume. The analysis reflects reported FPDS award records only and does not infer contract type, performance quality, or current relationship status beyond the provided data.

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 = '0GCL4'
        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
5700 DEPT OF THE AIR FORCE 1,141,934,666.35 1.14 billion 523
1700 DEPT OF THE NAVY 111,615,274.98 111.62 million 156
7008 U.S. COAST GUARD 48,355,193.67 48.36 million 34
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 9,162,058.09 9.16 million 16
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 541,906.92 541.91 thousand 234
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION -115,900.32 -115.90 thousand 1

Insight

Over the last 5 years, L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. received $1.31 billion across 964 awards, with obligations heavily concentrated in the DEPT OF THE AIR FORCE, which accounts for $1.14 billion and 523 awards, or the vast majority of total spend. The DEPT OF THE NAVY is a distant second at $111.62 million across 156 awards, followed by the U.S. COAST GUARD at $48.36 million and NOAA at $9.16 million, indicating a strong defense-oriented distribution with limited civilian exposure. DCMA records 234 awards but only $541.91 thousand in obligations, suggesting many low-dollar actions, while NASA shows a small negative obligation of $115.90 thousand on 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 = '0GCL4'
        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
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 939,444,202.02 939.44 million 289
336411 AIRCRAFT MANUFACTURING 254,276,361.38 254.28 million 466
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 104,304,388.73 104.30 million 133
541330 ENGINEERING SERVICES 9,194,011.87 9.19 million 19
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 3,222,064.79 3.22 million 22
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 376,798.84 376.80 thousand 4
334290 OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING 291,137.30 291.14 thousand 6
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 160,478.19 160.48 thousand 5
333998 ALL OTHER MISCELLANEOUS GENERAL PURPOSE MACHINERY MANUFACTURING 157,377.50 157.38 thousand 13
488119 OTHER AIRPORT OPERATIONS 151,138.26 151.14 thousand 3

Insight

Over the last 5 years, obligations for L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. under CAGE 0GCL4 are highly concentrated in aircraft-related manufacturing. NAICS 336413 accounts for 939.44 million in obligations across 289 awards, and NAICS 336411 adds 254.28 million across 466 awards, together representing the vast majority of the vendor’s 1.31 billion total obligated. Smaller amounts are distributed across support activities for air transportation, engineering services, and communications equipment manufacturing, but none materially change the concentration in the top two NAICS.

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 = '0GCL4'
        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 136,964,434.31 136.96 million 178
2024 106,287,014.84 106.29 million 212
2023 741,195,781.59 741.20 million 170
2022 164,114,902.08 164.11 million 218
2021 162,931,066.87 162.93 million 186

Insight

Over the last 5 years, L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. has obligated $1.31 billion across 964 awards, averaging $1.36 million per award. Obligations are highly concentrated in FY 2023, which accounts for $741.20 million, or more than half of the 5-year total, indicating a pronounced one-year spike. Outside FY 2023, annual obligations are comparatively stable in the $106.29 million to $164.11 million range, while award counts remain fairly consistent between 170 and 218 per year.

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.