Most obligations are concentrated in DEFENSE MICROELECTRONICS ACTIVITY (DMEA), which accounts for 882 actions and $2.77 billion. Engineering services under NAICS 541330 dominates the portfolio, while annual obligations peaked in 2023 at $708.38 million and remained above $596 million in 2025.
Federal Contractor
RAYTHEON COMPANY Federal Contract Obligations (Last 5 Years)
RAYTHEON COMPANY (CAGE 4C2N0, UEI QF4VA87ST9F7) recorded 1,090 federal award actions and $2.75 billion obligated over the last five years.
Totals reflect the provided five-year analysis window and may include negative obligations from deobligations or other downward adjustments.
About RAYTHEON COMPANY federal contract activity
RAYTHEON COMPANY (CAGE 4C2N0, UEI QF4VA87ST9F7) recorded 1,090 FPDS awards totaling 2.75 billion across the last 5 years, with an average award value of 2.52 million. The award profile is materially concentrated in a small number of agencies and NAICS codes, indicating a focused federal contracting footprint rather than broad market dispersion.
Agency mix and customer concentration
DEFENSE MICROELECTRONICS ACTIVITY (DMEA) dominates the observed obligation base at 2.77 billion across 882 awards, accounting for nearly all positive obligation volume in the period. The remaining agencies contribute comparatively small or negative obligated totals, including the Department of the Navy at 70.65 thousand and offsetting negative obligations from the Department of the Air Force and DCMA, which suggests material deobligations or closeout adjustments in those records.
Industry profile based on NAICS activity
NAICS 541330, Engineering Services, is the primary classification by a wide margin, with 2.76 billion and 973 awards. NAICS 334511 contributes 117 awards but shows net negative obligations of 9.09 million, reinforcing that the vendor’s activity is concentrated in engineering services with a smaller amount of adjustment-heavy activity in systems and instrument manufacturing.
Annual contract trend over the analysis window
Annual obligations rose from 369.07 million in 2021 to a peak of 708.38 million in 2023, then remained elevated at 653.80 million in 2024 before easing to 596.40 million in 2025. Award counts moved in the opposite direction after 2021, peaking at 284 in 2021 and then settling between 175 and 226 annually, which is consistent with larger average award sizes in later years.
How to interpret this page
This summary is based on FPDS obligation data for the last 5 years using the supplied CAGE code and UEI. Totals, counts, and averages reflect the provided aggregate metrics; negative obligations are retained as reported and may reflect deobligations, modifications, or other corrective actions in the underlying records.
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 = '4C2N0'
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 |
|---|---|---|---|---|
| 9771 | DEFENSE MICROELECTRONICS ACTIVITY (DMEA) | 2,766,449,522.73 | 2.77 billion | 882 |
| 1700 | DEPT OF THE NAVY | 70,650.15 | 70.65 thousand | 5 |
| 5700 | DEPT OF THE AIR FORCE | -8,105,163.68 | -8.11 million | 104 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -11,542,116.29 | -11.54 million | 99 |
Insight
Over the last 5 years, RAYTHEON COMPANY’s obligations are heavily concentrated with DEFENSE MICROELECTRONICS ACTIVITY (DMEA), which accounts for $2.77 billion across 882 awards and exceeds the vendor’s overall reported total obligated of $2.75 billion. Activity with other agencies is comparatively minor: DEPT OF THE NAVY obligated $70.65 thousand across 5 awards, while DEPT OF THE AIR FORCE and DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) show net de-obligations of $8.11 million and $11.54 million, respectively. This pattern indicates that the vendor’s federal obligation profile in this period is dominated by one agency, with limited diversification across the remaining agencies.
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 = '4C2N0'
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 | 2,755,959,322.84 | 2.76 billion | 973 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | -9,086,429.93 | -9.09 million | 117 |
Insight
Over the last 5 years, RAYTHEON COMPANY’s obligations under CAGE 4C2N0 are highly concentrated in NAICS 541330, Engineering Services, which accounts for $2.76 billion across 973 awards. NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, shows a net negative obligation of $9.09 million across 117 awards, indicating the vendor’s obligated value in this period is overwhelmingly tied to engineering services. Overall, the vendor recorded $2.75 billion in obligations across 1,090 awards, with an average award value of $2.52 million.
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 = '4C2N0'
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 | 596,398,904.01 | 596.40 million | 175 |
| 2024 | 653,797,734.16 | 653.80 million | 224 |
| 2023 | 708,381,414.02 | 708.38 million | 181 |
| 2022 | 419,220,050.87 | 419.22 million | 226 |
| 2021 | 369,074,789.85 | 369.07 million | 284 |
Insight
RAYTHEON COMPANY (CAGE 4C2N0) obligated $2.75 billion across 1,090 awards over the last 5 years, averaging $2.52 million per award. Obligations were highest in 2023 at $708.38 million, followed by 2024 at $653.80 million and 2025 at $596.40 million, indicating a recent moderation after a 2023 peak. Award counts were highest in 2021 and 2022, then declined to 181 in 2023, rose to 224 in 2024, and fell to 175 in 2025, suggesting year-to-year variation in award volume rather than a steady pattern.
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.