Over the last five years, ORDNANCE SYSTEMS INCORPORATED has obligated $1,349,220,754.38 across 273 award actions, for an average action value of $4,942,200.56. The Department of the Army accounts for nearly all obligations at $1.349 billion across 271 awards, with the Department of the Navy recording 2 awards totaling $193,374.50.
Federal Contractor
ORDNANCE SYSTEMS INCORPORATED Federal Contract Obligations (Last 5 Years)
ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48, UEI XLPYCXG31TV7) has received 273 awards worth $1.349 billion over the last five years, led by Army obligations.
Amounts reflect readable FPDS obligations for the last five years and may differ from contract totals, modifications, or accounting records.
About ORDNANCE SYSTEMS INCORPORATED federal contract activity
ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48, UEI XLPYCXG31TV7) received $1.35 billion across 273 FPDS awards in the last 5 years, for an average award value of about $4.94 million. The spending profile is heavily concentrated, with the Department of the Army accounting for nearly all obligated dollars.
Agency mix and customer concentration
The Department of the Army represents the dominant buying relationship, with $1.349 billion obligated across 271 awards, indicating a highly concentrated customer base. The Department of the Navy appears only marginally, with 2 awards totaling $193,374.50, which is immaterial relative to Army spending. This mix suggests the vendor’s federal activity is primarily Army-aligned.
Industry profile based on NAICS activity
The vendor’s obligations are concentrated in FACILITIES SUPPORT SERVICES (NAICS 561210) and EXPLOSIVES MANUFACTURING (NAICS 325920), which together account for virtually all obligated dollars over the period. 561210 leads with $740.46 million across 152 awards, followed by 325920 with $608.54 million across 118 awards. R&D under NAICS 541715 is present but minimal at $228,028.60 across 3 awards.
Annual contract trend over the analysis window
Annual obligations peaked in 2021 at $419.14 million, then declined in 2022 and 2023 before rising again in 2024 and 2025. The recent years show renewed activity, with $234.72 million obligated in 2025 and $188.66 million in 2024. Award volume moved in a less linear pattern, ranging from 34 awards in 2024 to 79 in 2023.
How to interpret this page
This summary is based on FPDS award records associated with CAGE 1LF48 and UEI XLPYCXG31TV7 over the last 5 years. Dollar figures reflect total obligated amounts and award counts are based on the reported FPDS records in the analysis window. NAICS and agency groupings are aggregated from the same award set and may include multiple awards under the same contract or ordering vehicle.
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 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 | 1,349,027,379.88 | 1.35 billion | 271 |
| 1700 | DEPT OF THE NAVY | 193,374.50 | 193.37 thousand | 2 |
Insight
ORDNANCE SYSTEMS INCORPORATED’s obligations over the last 5 years are highly concentrated in the DEPT OF THE ARMY, which accounts for $1.349 billion of the vendor’s $1.349 billion total and 271 of 273 awards. DEPT OF THE NAVY represents a negligible share of activity, with $193.4 thousand across 2 awards. This indicates a near-exclusive reliance on Army contracting relationships, with very limited diversification across 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 = '1LF48'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 740,456,196.32 | 740.46 million | 152 |
| 325920 | EXPLOSIVES MANUFACTURING | 608,536,529.46 | 608.54 million | 118 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 228,028.60 | 228.03 thousand | 3 |
Insight
Over the last 5 years, ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48) received $1.35 billion across 273 awards, with obligation concentrated in two NAICS codes. NAICS 561210, Facilities Support Services, accounts for $740.46 million and 152 awards, while NAICS 325920, Explosives Manufacturing, accounts for $608.54 million and 118 awards; together they represent essentially all obligated dollars in this period. NAICS 541715 contributed only $228.03 thousand across 3 awards, indicating a minimal presence outside the two primary procurement areas.
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 5 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 |
Insight
Over the last 5 years, ORDNANCE SYSTEMS INCORPORATED (CAGE 1LF48) obligated $1.35 billion across 273 awards, averaging $4.94 million per award. Obligations are unevenly distributed, with 2021 representing the highest annual amount at $419.14 million, followed by lower but still substantial levels in 2022–2025 ranging from $188.66 million to $256.74 million. Award counts also vary year to year, peaking in 2023 at 79 awards, indicating a moderate concentration of activity in 2021 and a more dispersed award pattern in subsequent years.
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.