L3HARRIS TECHNOLOGIES, INC. recorded $1,051,060,352.03 in obligated federal awards across 340 actions in the last 5 years, averaging $3,091,353.97 per action. Most activity was with the Department of the Air Force, and the largest NAICS category was Engineering Services.
Federal Contractor
L3HARRIS TECHNOLOGIES, INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7, UEI LHJPD6T16EV9) covering obligations and awards over the last 5 years.
Totals reflect the provided analysis window; annual, agency, and NAICS figures may not sum perfectly because of negative obligations and rounding.
About L3HARRIS TECHNOLOGIES, INC. federal contract activity
L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7, UEI LHJPD6T16EV9) recorded $1.05 billion in obligated value across 340 FPDS awards over the last 5 years, with an average award value of $3.09 million. The spending profile is heavily concentrated, indicating sustained federal demand rather than a broad, diffuse contract base.
Agency mix and customer concentration
The DEPT OF THE AIR FORCE accounted for virtually all activity, with 337 awards and $1.05 billion obligated, making it the clear primary customer in this period. The only other agency in the dataset, DCMA, appears only marginally with 3 awards and no obligated value, suggesting administrative or oversight activity rather than substantive procurement volume.
Industry profile based on NAICS activity
NAICS 541330, Engineering Services, dominates the portfolio with 334 awards and $1.06 billion obligated, closely matching the overall award pattern and indicating that professional engineering support is the core procurement category. NAICS 334511 shows 6 awards but negative obligated value of $7.24 million, which may reflect deobligations, modifications, or contract adjustments within that manufacturing-related classification.
Annual contract trend over the analysis window
Annual obligations rose from $175.10 million in 2021 to a high of $239.90 million in 2024, then remained elevated at $210.92 million in 2025. Award counts peaked in 2023 at 93 and then declined, even as obligation values stayed above $199 million from 2022 through 2025, pointing to fewer but larger or more heavily modified awards in the later years.
How to interpret this page
This page summarizes FPDS-observed obligations tied to the vendor name, CAGE code, and UEI over the last 5 years. Totals, counts, and averages are direct aggregates of the provided dataset; negative obligations are retained as reported and may reflect deobligations or other contract-level adjustments. Industry and agency summaries are based on the highest-obligated groupings in the supplied data, not on external validation.
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 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,051,060,352.03 | 1.05 billion | 337 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 3 |
Insight
Over the last 5 years, L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7) shows extreme agency concentration: 1.05 billion of 1.05 billion in obligations came from the Department of the Air Force, representing 337 of 340 awards. The Defense Contract Management Agency accounted for the remaining 3 awards but no obligated dollars. This pattern indicates a highly concentrated award profile with essentially all obligated value tied to a single agency.
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 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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 1,058,299,049.35 | 1.06 billion | 334 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | -7,238,697.32 | -7.24 million | 6 |
Insight
Over the last 5 years, L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7) received 340 awards totaling $1.05 billion, with an average award value of $3.09 million. Obligations are highly concentrated in NAICS 541330, Engineering Services, which accounts for $1.06 billion across 334 awards and effectively represents the firm’s primary contracting area. A small offset appears in NAICS 334511, with 6 awards and net obligations of -$7.24 million, which slightly reduces the overall total.
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 5 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 |
Insight
Over the last 5 years, L3HARRIS TECHNOLOGIES, INC. (CAGE 1YRM7) received $1.05 billion across 340 awards, averaging $3.09 million per award. Obligations were relatively steady year to year, ranging from $175.10 million in 2021 to a high of $239.90 million in 2024, with 2025 at $210.92 million. Award volume peaked in 2023 at 93 actions, indicating a concentration of smaller awards that year relative to dollars obligated.
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.