Federal Contractor

ORDNANCE SYSTEMS INCORPORATED Federal Contract Obligations (Last 10 Years)

ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48, UEI XLPYCXG31TV7) shows 10 years of federal obligations totaling $2.49 billion across 521 actions.

Most of the vendor's federal business comes from the Department of the Army, which accounts for $2.49 billion across 504 awards. Activity is concentrated in NAICS 561210 Facilities Support Services and NAICS 325920 Explosives Manufacturing, with annual obligations remaining in the hundreds of millions in recent years.

Generated at 03/21/2026

Analysis period: Last 10 years

This page reflects the last 10 years of FPDS-readable award data and may include only obligation records available in the source dataset.

CAGE Code
1LF48
UEI
XLPYCXG31TV7
Total Obligated
2.49 billion
2,491,795,460.70
Award Actions
521
Average Action Value
4,782,716.81

About ORDNANCE SYSTEMS INCORPORATED federal contract activity

Over the last 10 years, ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48, UEI XLPYCXG31TV7) received 521 federal awards totaling $2.49 billion, for an average award value of $4.78 million. The profile is highly concentrated in a single civilian-defense customer base, with the Department of the Army accounting for nearly all obligations.

Agency mix and customer concentration

The Department of the Army is the dominant awarding agency, with $2.49 billion across 504 awards, representing virtually the entire observed obligation base. The Department of the Navy and Department of the Air Force appear only as minor sources of activity, together contributing less than $1 million across 17 awards.

Industry profile based on NAICS activity

Obligations are concentrated in NAICS 561210, Facilities Support Services, at $1.39 billion across 273 awards, followed closely by NAICS 325920, Explosives Manufacturing, at $1.10 billion across 241 awards. A much smaller portion is associated with NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, indicating limited diversification beyond support and explosives-related work.

Annual contract trend over the analysis window

Annual obligations remained in the hundreds of millions in the most recent years shown, rising from $188.66 million in 2024 to $234.72 million in 2025, after a peak of $419.14 million in 2021. Award volume also varied year to year, with 79 awards in 2023 versus 34 in 2024, suggesting changes in tasking or contract timing rather than a steady award cadence.

How to interpret this page

This page summarizes FPDS award records associated with CAGE code 1LF48 and UEI XLPYCXG31TV7 over the last 10 years. Totals reflect obligated dollars and award counts aggregated across the reported period, with agency, NAICS, and annual views based on the provided FPDS analysis outputs.

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 = '1LF48'
        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 2,490,877,033.87 2.49 billion 504
1700 DEPT OF THE NAVY 509,716.83 509.72 thousand 10
5700 DEPT OF THE AIR FORCE 408,710.00 408.71 thousand 7

Insight

Over the last 10 years, ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48) received 2.49 billion across 521 awards, with an average award value of 4.78 million. Obligations are overwhelmingly concentrated in the DEPT OF THE ARMY, which accounts for 2.49 billion and 504 awards, indicating near-total reliance on that agency. The DEPT OF THE NAVY and DEPT OF THE AIR FORCE represent only marginal activity, at 509.72 thousand across 10 awards and 408.71 thousand across 7 awards, respectively.

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 = '1LF48'
        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
561210 FACILITIES SUPPORT SERVICES 1,394,742,611.18 1.39 billion 273
325920 EXPLOSIVES MANUFACTURING 1,096,479,506.92 1.10 billion 241
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 573,342.60 573.34 thousand 7

Insight

ORDNANCE SYSTEMS INCORPORATED’s obligations over the last 10 years are highly concentrated in two NAICS codes: 561210, Facilities Support Services, at $1.39 billion across 273 awards, and 325920, Explosives Manufacturing, at $1.10 billion across 241 awards. Together, these account for nearly all of the vendor’s $2.49 billion in obligations, indicating a procurement profile dominated by facilities support and explosives-related work. The remaining NAICS activity is minimal by comparison, with 541715 totaling $573.34 thousand across 7 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 = '1LF48'
        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 234,720,131.30 234.72 million 52
2024 188,660,431.13 188.66 million 34
2023 249,960,853.16 249.96 million 79
2022 256,736,660.72 256.74 million 52
2021 419,142,678.07 419.14 million 56
2020 301,163,604.07 301.16 million 57
2019 198,657,064.34 198.66 million 43
2018 429,838,507.85 429.84 million 71
2017 212,915,530.06 212.92 million 77

Insight

Over the last 10 years, ORDNANCE SYSTEMS INCORPORATED obligated $2.49 billion across 521 awards, averaging $4.78 million per award. Annual obligations were unevenly distributed, ranging from a low of $188.66 million in 2024 to a high of $429.84 million in 2018, with other notable peaks in 2021 ($419.14 million) and 2020 ($301.16 million). Recent activity remained elevated at $234.72 million in 2025 after a decline in 2024, indicating continued but variable funding levels over the period.

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.