Federal Contractor

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

DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2, UEI NWKQVQED4C81) has received 1,488 federal award actions totaling $2.31 billion over the last 5 years.

Federal procurement records show DEFENSE SYSTEMS AND SOLUTIONS concentrated almost all of its obligated value in the Department of the Army, with $2.31 billion across 1,488 actions. Most obligations fall under NAICS 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, with a smaller share in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations increased from $315.28 million in 2021 to $715.31 million in 2025, with the highest annual award count in 2024 at 338.

CAGE Code
7U6S2
UEI
NWKQVQED4C81
Total Obligated
2.31 billion
2,310,375,475.69
Award Actions
1,488
Average Action Value
1,552,671.69

About DEFENSE SYSTEMS AND SOLUTIONS federal contract activity

DEFENSE SYSTEMS AND SOLUTIONS, identified by CAGE 7U6S2 and UEI NWKQVQED4C81, recorded 2.31 billion in obligated federal awards across 1,488 awards over the last 5 years, for an average award value of 1.55 million. The profile reflects a high-volume procurement relationship with concentrated obligation levels rather than a small number of large transactions.

Agency mix and customer concentration

All observed obligations came from the DEPT OF THE ARMY, which accounted for the full 2.31 billion and all 1,488 awards in the analysis window. This indicates a single-agency demand profile with no meaningful diversification across civilian or other defense agencies in the available data.

Industry profile based on NAICS activity

The award base is overwhelmingly concentrated in NAICS 336413, OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING, which represents 2.30 billion across 1,452 awards. NAICS 336992, MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING, is present but minor by comparison at 6.75 million across 36 awards.

Annual contract trend over the analysis window

Annual obligations increased from 315.28 million in 2021 to 715.31 million in 2025, with a notable step-up in 2024 and the highest annual total in 2025. Award counts remained relatively stable year to year, ranging from 215 to 338, suggesting growth was driven more by larger obligated values than by a major expansion in transaction volume.

How to interpret this page

This summary is based on FPDS award records for the last 5 years and uses obligated dollars, award counts, agency attribution, and NAICS classification as reported in the provided dataset. Totals, rankings, and annual values are descriptive and reflect the supplied analysis window only; they do not infer performance, contract type, or scope beyond the available fields.

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 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 2,310,375,475.69 2.31 billion 1,488

Insight

Over the last 5 years, DEFENSE SYSTEMS AND SOLUTIONS has received $2.31 billion across 1,488 awards, for an average award value of about $1.55 million. All reported obligations are concentrated within the Department of the Army, indicating a highly concentrated customer base and reliance on a single agency relationship. This pattern suggests limited agency diversification and award activity driven entirely by Army procurement.

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 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
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 2,303,626,327.90 2.30 billion 1,452
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 6,749,147.79 6.75 million 36

Insight

Over the last 5 years, DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2) received $2.31 billion across 1,488 awards, with an average award value of $1.55 million. Obligations are highly concentrated in NAICS 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, which accounts for $2.30 billion and 1,452 awards, or nearly all activity. NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, represents a small secondary share at $6.75 million across 36 awards. This pattern indicates a narrow industrial focus dominated by aircraft-related manufacturing.

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 5 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

Insight

DEFENSE SYSTEMS AND SOLUTIONS (CAGE 7U6S2) shows a clear upward obligation trend over the last 5 years, increasing from $315.28 million in 2021 to $715.31 million in 2025, with total obligations of $2.31 billion across 1,488 awards. Award volume is relatively stable in 2022–2025, ranging from 296 to 338 awards annually, while obligations rose materially, indicating higher average award values over time. The 2025 level is the highest in the period and represents the largest annual concentration of obligations.

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.