Federal Contractor

DEFENSE SYSTEMS AND SOLUTIONS Federal Contract Obligations (Last 10 Years)

DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2, UEI NWKQVQED4C81) received 3.15 billion across 1,864 federal actions over the last 10 years.

In the last 10 years, DEFENSE SYSTEMS AND SOLUTIONS recorded 3.15 billion in obligated federal awards, with an average action value of 1.69 million. The Department of the Army accounted for all listed obligations, and most funding was tied to NAICS 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations rose from 315.28 million in 2021 to 715.31 million in 2025, based on readable FPDS action data.

CAGE Code
7U6S2
UEI
NWKQVQED4C81
Total Obligated
3.15 billion
3,154,726,711.37
Award Actions
1,864
Average Action Value
1,692,449.95

About DEFENSE SYSTEMS AND SOLUTIONS federal contract activity

DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2, UEI NWKQVQED4C81) recorded 3.15 billion in obligated dollars across 1,864 awards over the last 10 years, with an average award value of 1.69 million. The vendor’s FPDS profile indicates sustained federal contracting activity at meaningful scale, concentrated in defense-related manufacturing work.

Agency mix and customer concentration

All recorded obligations in the analysis window came from the DEPT OF THE ARMY, which accounted for 3.15 billion and 1,864 awards. This indicates an extremely concentrated customer base and suggests the vendor’s federal business is tied primarily to Army procurement requirements.

Industry profile based on NAICS activity

The vendor’s obligations are dominated by NAICS 336413, OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING, with 3.14 billion across 1,803 awards. A much smaller share is attributed to NAICS 336992, MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING, at 17.07 million across 61 awards, showing a narrow but defense-focused manufacturing mix.

Annual contract trend over the analysis window

Annual obligations have remained strong in the most recent five years shown, increasing from 315.28 million in 2021 to 715.31 million in 2025. Award counts also stayed elevated, ranging from 215 to 338 per year, with the highest obligation level occurring in 2025.

How to interpret this page

This summary is based on FPDS award records attributed to CAGE 7U6S2 and UEI NWKQVQED4C81 over the last 10 years. Totals, counts, agency concentration, NAICS distribution, and annual trend figures are derived from the provided analysis window and reflect obligated dollars only.

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 = '7U6S2'
        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
2100 DEPT OF THE ARMY 3,154,726,711.37 3.15 billion 1,864

Insight

Over the last 10 years, DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2) received all reported obligations from a single agency: the Department of the Army. The vendor’s $3.15 billion in total obligations across 1,864 awards indicates a fully concentrated customer base within the reported period. Average award value was about $1.69 million, suggesting a mix of numerous moderate-sized obligations rather than reliance on a small number of large awards.

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 = '7U6S2'
        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
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 3,137,655,386.66 3.14 billion 1,803
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 17,071,324.71 17.07 million 61

Insight

Over the last 10 years, DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2) has received $3.15 billion across 1,864 awards, with awards averaging $1.69 million. Obligations are highly concentrated in NAICS 336413, OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING, which accounts for $3.14 billion and 1,803 awards, or nearly all tracked obligations. NAICS 336992, MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING, represents a much smaller share at $17.07 million across 61 awards, indicating limited diversification beyond the dominant aircraft-parts category.

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 = '7U6S2'
        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 715,308,365.02 715.31 million 337
2024 536,402,966.20 536.40 million 338
2023 415,895,734.96 415.90 million 302
2022 327,484,635.52 327.48 million 296
2021 315,283,773.99 315.28 million 215
2020 459,565,399.45 459.57 million 250
2019 354,687,751.24 354.69 million 119
2018 30,098,084.99 30.10 million 7

Insight

Over the last 10 years, DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2) has obligated 3.15 billion across 1,864 awards, with a relatively high average award value of 1.69 million. Obligations are concentrated in the most recent years, rising from 30.10 million in 2018 to 715.31 million in 2025, with successive annual totals generally above 300 million since 2019. Award counts also increased over time, from 7 in 2018 to a range of 215–338 annually from 2021 through 2025, indicating sustained award activity alongside the upward funding trend.

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.