Federal Contractor

RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (5772) Federal Contract Obligations (Last 5 Years)

Federal procurement summary for RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (5772), CAGE 3YTE2, UEI F24UGAM8N397, covering obligations and awards over the last 5 years.

RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY recorded 224 award actions and $112.78 million in obligated spending across the last 5 years, with activity concentrated in the Department of the Army. Engineering services under NAICS 541330 accounted for most obligations, followed by other professional, scientific, and technical services under NAICS 541990.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals include a negative obligation in 2023, which may reflect deobligations or contract adjustments in FPDS records.

CAGE Code
3YTE2
UEI
F24UGAM8N397
Total Obligated
112.78 million
112,775,872.50
Award Actions
224
Average Action Value
503,463.71

About RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (5772) federal contract activity

RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (CAGE 3YTE2, UEI F24UGAM8N397) received $112.78 million across 224 awards over the last 5 years, for an average award value of $503,463.71. The profile is dominated by Department of the Army obligations, indicating a concentrated federal customer base and a heavy defense-services orientation.

Agency mix and customer concentration

The Department of the Army accounts for essentially all positive obligations at $112.79 million across 221 awards. DCMA shows a small negative net obligation of $17.63 thousand across 3 awards, which is consistent with closeout, deobligation, or administrative adjustment activity rather than substantive new spending.

Industry profile based on NAICS activity

NAICS 541330, Engineering Services, is the core revenue driver at $84.58 million and 185 awards, followed by NAICS 541990 at $24.95 million across 37 awards. NAICS 611512, Flight Training, is a smaller but visible line of activity at $3.24 million across 2 awards, showing some diversification beyond engineering support.

Annual contract trend over the analysis window

Annual obligations were highest in 2021 at $74.47 million across 130 awards and remained elevated in 2022 at $47.60 million across 54 awards. Funding then turned negative in 2023 at $26.07 million, before returning to positive but lower levels in 2024 and 2025 at $13.49 million and $3.28 million, respectively. The pattern suggests a post-peak decline with some year-to-year volatility driven by adjustments or contract actions.

How to interpret this page

This summary uses FPDS award-obligation data for the last 5 years and aggregates by vendor identifiers, including CAGE and UEI. Totals, counts, and averages reflect recorded obligations in the provided analysis window; negative values are retained as reported and may indicate deobligations or accounting adjustments.

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 = '3YTE2'
        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
2100 DEPT OF THE ARMY 112,793,500.62 112.79 million 221
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -17,628.12 -17.63 thousand 3

Insight

Over the last 5 years, obligations for RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (CAGE 3YTE2) are highly concentrated at the Department of the Army, which accounts for $112.79 million across 221 awards. DCMA shows a small net negative obligated amount of $17.63 thousand across 3 awards, indicating minimal offsetting activity relative to Army funding. Overall, the vendor’s top-agency profile reflects a near-total dependence on a single agency relationship in this period.

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 = '3YTE2'
        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 84,584,613.16 84.58 million 185
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 24,950,643.34 24.95 million 37
611512 FLIGHT TRAINING 3,240,616.00 3.24 million 2

Insight

Over the last 5 years, RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (UEI F24UGAM8N397, CAGE 3YTE2) received $112.78 million across 224 awards, averaging $503.46K per award. Obligations are heavily concentrated in NAICS 541330, Engineering Services, which accounts for $84.58 million and 185 awards, or roughly three-quarters of total obligated value. NAICS 541990, All Other Professional, Scientific, and Technical Services, is a secondary area with $24.95 million across 37 awards, while NAICS 611512, Flight Training, represents a minor share at $3.24 million across 2 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 = '3YTE2'
        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 3,283,358.66 3.28 million 4
2024 13,493,886.30 13.49 million 8
2023 -26,070,713.40 -26.07 million 28
2022 47,597,991.50 47.60 million 54
2021 74,471,349.44 74.47 million 130

Insight

Obligations for RAYTHEON TECHNICAL SERVICES COMPANY LIMITED LIABILITY COMPANY (CAGE 3YTE2) are concentrated in 2021 and 2022, which together account for 121 awards and $122.07 million of the 5-year total. Activity then declined sharply in 2023, with a negative obligated amount of $26.07 million across 28 awards, indicating a substantial downward adjustment or de-obligation year. Award volume and obligations remained materially lower in 2024 and 2025, with 12 awards totaling $16.77 million, compared with 130 awards and $74.47 million in 2021.

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.