Federal Contractor

ALLIANT TECHSYSTEMS OPERATIONS LLC Federal Contract Obligations (Last Year)

ALLIANT TECHSYSTEMS OPERATIONS LLC recorded 79 award actions and $70.91 million in obligated value during the last full year, led by Navy contracting.

In the last full year, ALLIANT TECHSYSTEMS OPERATIONS LLC (CAGE 3EFM9, UEI HBCXZGZJ83M4) received 79 federal award actions totaling $70,908,494.86. Department of the Navy obligations accounted for nearly all recorded spending, with work concentrated in engineering services and guided missile and space vehicle manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Agency, NAICS, and annual totals reflect the provided analysis window and may include negative obligations in subcontract or administrative adjustments.

CAGE Code
3EFM9
UEI
HBCXZGZJ83M4
Total Obligated
70.91 million
70,908,494.86
Award Actions
79
Average Action Value
897,575.88

About ALLIANT TECHSYSTEMS OPERATIONS LLC federal contract activity

ALLIANT TECHSYSTEMS OPERATIONS LLC recorded 79 FPDS-observed awards in the last full year, with total obligated value of 70.91 million and an average award size of 897,575.88. The profile indicates a moderately concentrated award base by count, with dollars driven primarily by defense-related obligations.

Agency mix and customer concentration

The DEPT OF THE NAVY accounted for nearly all positive obligation activity at 71.39 million across 74 awards, making it the clear primary customer. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows a net negative 484.24 thousand across 5 awards, indicating downward adjustment activity rather than positive new obligation.

Industry profile based on NAICS activity

NAICS 541330, Engineering Services, led the vendor’s activity with 38.33 million across 49 awards, followed closely by NAICS 336414, Guided Missile and Space Vehicle Manufacturing, at 32.58 million across 25 awards. NAICS 334511 appears in the award mix with 5 awards but no obligated value, suggesting action activity without recorded net obligation in the analysis window.

Annual contract trend over the analysis window

The annual trend shows 70.91 million obligated in 2025 across 79 awards, matching the analysis window total. With only one annual data point provided, the available evidence supports a last-full-year snapshot rather than a multi-year trend assessment.

How to interpret this page

This summary is based on FPDS-observed actions associated with CAGE code 3EFM9 and UEI HBCXZGZJ83M4 for the last full year. Obligations are aggregated by agency, NAICS, and year; negative values are preserved as reported in FPDS and may reflect deobligations or other downward 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 = '3EFM9'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
1700 DEPT OF THE NAVY 71,392,738.16 71.39 million 74
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -484,243.30 -484.24 thousand 5

Insight

During the last full year, ALLIANT TECHSYSTEMS OPERATIONS LLC recorded $70.91 million in obligations across 79 awards, with procurement activity heavily concentrated in the DEPT OF THE NAVY. The Navy accounted for $71.39 million across 74 awards, indicating that nearly all positive obligated value was tied to that agency. DCMA represented a small offsetting share with -$484.24 thousand across 5 awards, which reduced the net obligated total but did not materially change the overall concentration pattern.

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 = '3EFM9'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 38,331,341.81 38.33 million 49
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 32,577,153.05 32.58 million 25
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 0.00 0.00 5

Insight

ALLIANT TECHSYSTEMS OPERATIONS LLC had 70.91 million obligated across 79 awards in the last full year, averaging 897,575.88 per award. Obligations were concentrated in two NAICS codes: 541330 Engineering Services accounted for 38.33 million across 49 awards, while 336414 Guided Missile and Space Vehicle Manufacturing accounted for 32.58 million across 25 awards. Together, these two NAICS codes represented essentially all obligated dollars in the period, indicating a narrow spending profile centered on engineering and missile/space vehicle manufacturing. Five awards were also recorded under 334511, but with no obligated dollars.

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 = '3EFM9'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 70,908,494.86 70.91 million 79

Insight

In the last full year, ALLIANT TECHSYSTEMS OPERATIONS LLC (CAGE 3EFM9) recorded $70.91 million in obligated value across 79 awards, for an average award value of about $897.6K. Because the window contains a single year, no year-over-year trend can be assessed from this view. The obligation profile indicates a moderate level of award dispersion rather than reliance on a small number of large 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.