Federal Contractor

L3HARRIS TECHNOLOGIES, INC. Federal Contract Obligations (Last 10 Years)

L3HARRIS TECHNOLOGIES, INC. recorded 755 federal award actions totaling $1.81 billion over the last 10 years, with most obligations from the Department of the Air Force.

This vendor page summarizes federal procurement activity for L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7, UEI LHJPD6T16EV9) across the last 10 years. The largest obligations fall under engineering services and aerospace-related manufacturing, with annual obligations remaining in the hundreds of millions in recent years.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts reflect obligated dollars in the analysis window and may not equal the sum of all action-level records because some actions show zero obligated value.

CAGE Code
1YRM7
UEI
LHJPD6T16EV9
Total Obligated
1.81 billion
1,811,161,165.49
Award Actions
755
Average Action Value
2,398,888.96

About L3HARRIS TECHNOLOGIES, INC. federal contract activity

L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7, UEI LHJPD6T16EV9) recorded $1.81 billion in obligated awards across 755 actions over the last 10 years, for an average award value of $2.40 million. The profile is highly concentrated, with nearly all obligated value tied to a single defense customer and a procurement mix centered on technical engineering and specialized systems work.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounted for essentially all obligated dollars at $1.81 billion across 748 awards, indicating a strong dependence on Air Force demand. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in the award count with 7 actions but no obligated value, suggesting administrative or oversight activity rather than funded procurement.

Industry profile based on NAICS activity

The largest NAICS category is 541330 Engineering Services at $1.18 billion across 353 awards, followed by 334511 Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing at $632.94 million across 395 awards. A smaller share is recorded under 541715 Research and Development in the Physical, Engineering, and Life Sciences at $850,000 across 7 awards, showing a portfolio dominated by engineering services and advanced systems manufacturing.

Annual contract trend over the analysis window

Annual obligations in the visible period remained in the hundreds of millions, rising from $175.10 million in 2021 to a peak of $239.90 million in 2024 before easing to $210.92 million in 2025. Award volume also fluctuated, with the highest count shown in 2023 at 93 awards, followed by 81 in 2022 and 71 in 2024, indicating steady but uneven contracting activity.

How to interpret this page

This summary is based on FPDS award data for the last 10 years and uses obligated dollars and award counts associated with the vendor’s CAGE code and UEI. Agency, NAICS, and annual trend statements reflect only the values provided in the analysis window and do not infer contract type, performance status, or scope beyond the recorded obligations.

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 = '1YRM7'
        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
5700 DEPT OF THE AIR FORCE 1,811,161,165.49 1.81 billion 748
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 7

Insight

Over the last 10 years, L3HARRIS TECHNOLOGIES, INC. has received 1.81 billion in obligations across 755 awards, with activity overwhelmingly concentrated at the Department of the Air Force. The Air Force accounts for 1.81 billion and 748 awards, indicating near-total dependence on a single agency relationship. DCMA records 7 awards but no obligated dollars, suggesting limited administrative action rather than substantive funding concentration.

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 = '1YRM7'
        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
541330 ENGINEERING SERVICES 1,177,374,700.35 1.18 billion 353
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 632,936,465.14 632.94 million 395
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 850,000.00 850.00 thousand 7

Insight

Over the last 10 years, L3HARRIS TECHNOLOGIES, INC. has obligated $1.81 billion across 755 awards, with activity concentrated in two NAICS codes. Engineering Services (541330) accounts for $1.18 billion across 353 awards, while Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing (334511) accounts for $632.94 million across 395 awards. These two categories represent nearly all observed obligations, indicating a strong concentration in engineering support and related manufacturing work, with only limited activity in R&D under NAICS 541715 ($850 thousand across 7 awards).

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 = '1YRM7'
        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 210,924,718.57 210.92 million 39
2024 239,902,127.60 239.90 million 71
2023 225,464,518.01 225.46 million 93
2022 199,669,376.02 199.67 million 81
2021 175,099,611.83 175.10 million 56
2020 151,628,932.69 151.63 million 59
2019 84,870,311.89 84.87 million 96
2018 171,352,743.76 171.35 million 88
2017 205,341,768.68 205.34 million 83
2016 146,907,056.44 146.91 million 89

Insight

Over the last 10 years, L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7) received $1.81 billion across 755 awards, averaging $2.40 million per award. Obligations were fairly steady at a generally elevated level, ranging from $84.87 million in 2019 to $239.90 million in 2024, with a similar level in 2025 to date at $210.92 million. Award counts were more variable than obligated dollars, peaking at 96 awards in 2019 and remaining between 39 and 93 in other years, indicating fluctuations in transaction volume alongside relatively sustained funding.

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.