Federal Contractor

ALLIANT TECHSYSTEMS OPERATIONS LLC Federal Contract Obligations (Last Year)

ALLIANT TECHSYSTEMS OPERATIONS LLC (CAGE 1PYT8, UEI RZUVNJBJ3LC3) recorded 21 award actions and $42.54 million in obligated federal spending in the last full year.

Most of the vendor’s obligation activity came from the Department of the Army, which accounted for 19 of 21 actions and the full $42.54 million total. By NAICS, the largest obligations were in explosives manufacturing and ammunition manufacturing, with smaller amounts in remediation services and a negative net total in small arms and ordnance accessories manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and may include deobligations, which can produce negative NAICS totals and agency rows with zero obligated value.

CAGE Code
1PYT8
UEI
RZUVNJBJ3LC3
Total Obligated
42.54 million
42,539,466.14
Award Actions
21
Average Action Value
2,025,688.86

About ALLIANT TECHSYSTEMS OPERATIONS LLC federal contract activity

ALLIANT TECHSYSTEMS OPERATIONS LLC (CAGE 1PYT8, UEI RZUVNJBJ3LC3) received 21 awards in the last full year, with total obligations of 42.54 million and an average award value of 2.03 million. The vendor’s activity is highly concentrated, with essentially all obligated dollars tied to a single customer and a relatively small number of awards.

Agency mix and customer concentration

The DEPT OF THE ARMY accounted for the full 42.54 million in obligations and 19 of the 21 awards, making it the clear primary buying agency. DCMA and the Defense Logistics Agency each show one award in the period, but no obligated dollars, indicating limited administrative or zero-dollar activity outside the Army relationship.

Industry profile based on NAICS activity

Obligated dollars were concentrated in explosives manufacturing (NAICS 325920) at 30.85 million and ammunition manufacturing (NAICS 332993) at 9.88 million, together representing the vast majority of the year’s spending. Remediation services (NAICS 562910) added 1.88 million, while smaller activity included a zero-obligation aircraft parts award and a negative obligation balance in small arms and ordnance manufacturing (NAICS 332994), which reduced the category total by 65.49 thousand.

Annual contract trend over the analysis window

The annual trend shows 42.54 million in obligated dollars and 21 awards in 2025, with no other year present in the analysis window. Based on the available data, there is no multi-year pattern to assess; the record reflects a single-year snapshot of vendor activity.

How to interpret this page

This summary is based on FPDS award data for the last full year and uses obligated dollars, award counts, and reported agency and NAICS groupings for the vendor identified by CAGE 1PYT8 and UEI RZUVNJBJ3LC3. Totals may include zero-dollar awards and negative obligations where recorded in FPDS, and the analysis reflects the supplied dataset 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 = '1PYT8'
        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
2100 DEPT OF THE ARMY 42,539,466.14 42.54 million 19
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1
97AS DEFENSE LOGISTICS AGENCY 0.00 0.00 1

Insight

Over the last full year, ALLIANT TECHSYSTEMS OPERATIONS LLC received $42.54 million across 21 awards, with an average award value of $2.03 million. Obligations were highly concentrated in the Department of the Army, which accounted for all $42.54 million and 19 of the 21 awards. DCMA and DLA each recorded one award with $0 obligated, indicating minimal distribution beyond the Army and no meaningful obligated volume from the other listed 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 = '1PYT8'
        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
325920 EXPLOSIVES MANUFACTURING 30,850,199.06 30.85 million 5
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 9,877,781.32 9.88 million 8
562910 REMEDIATION SERVICES 1,876,976.08 1.88 million 2
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 0.00 0.00 1
332994 SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING -65,490.32 -65.49 thousand 5

Insight

ALLIANT TECHSYSTEMS OPERATIONS LLC received 42.54 million across 21 awards in the last full year, averaging 2.03 million per award. Obligations are highly concentrated in NAICS 325920 (Explosives Manufacturing), which accounts for 30.85 million across 5 awards, or about 72% of total obligated dollars. NAICS 332993 (Ammunition, except Small Arms, Manufacturing) is the next largest category at 9.88 million across 8 awards, while remaining obligations are limited to smaller amounts in Remediation Services and a zero-obligation award in Aircraft Parts and Auxiliary Equipment Manufacturing. A small negative obligation appears under NAICS 332994, indicating net deobligation activity in that 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 = '1PYT8'
        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 42,539,466.14 42.54 million 21

Insight

During the last full year, ALLIANT TECHSYSTEMS OPERATIONS LLC (CAGE 1PYT8) recorded $42.54 million in obligated awards across 21 awards, for an average award value of about $2.03 million. With all observed obligations concentrated in a single year, there is no multi-year trend to assess within the 1-year window. The award profile indicates moderate distribution across multiple awards rather than reliance on a single large obligation.

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.