Over the last five years, GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. received $2,091,281,107.91 across 193 award actions, with an average action value of $10,835,653.40. DEPT OF THE ARMY accounts for nearly all obligations, and AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING is the dominant NAICS category.
Federal Contractor
GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. (CAGE 0F875, UEI FNEJKBCACXL1) covering obligations, award counts, agencies, NAICS codes, and yearly trend data for the last five years.
Totals reflect the provided analysis window and may include small negative or rounding differences in category and agency rollups.
About GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. federal contract activity
GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. (CAGE 0F875, UEI FNEJKBCACXL1) recorded $2.09 billion in obligated federal awards across 193 awards over the last 5 years, with an average award value of $10.84 million. The obligation profile is heavily concentrated, indicating a sustained stream of medium-to-large defense procurement actions rather than a broad, diversified award base.
Agency mix and customer concentration
The DEPT OF THE ARMY accounts for essentially all observed activity, with $2.09 billion across 181 awards, making it the dominant customer by both value and volume. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally in the data, with $0.02 across 12 awards, which is immaterial relative to the Army relationship.
Industry profile based on NAICS activity
The vendor’s obligations are overwhelmingly aligned to NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which represents virtually the entire 5-year total at $2.09 billion across 192 awards. A single NAICS 336414 entry shows a small negative obligation of $3.11 thousand on one award, which is negligible and does not materially affect the overall sector profile.
Annual contract trend over the analysis window
Annual obligations increased sharply in 2023 through 2025 after a lower point in 2022, reaching $788.76 million in 2025, $609.68 million in 2024, and $466.44 million in 2023. The earlier years show a smaller base of activity, with $149.82 million in 2021 and $76.59 million in 2022, suggesting recent acceleration in procurement demand.
How to interpret this page
This summary uses FPDS award obligation data for the last 5 years and aggregates awards by vendor, agency, NAICS, and fiscal year. Totals reflect obligated dollars as reported in the provided dataset; small negative values are preserved as presented and are not adjusted or inferred.
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 = '0F875'
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,091,281,107.89 | 2.09 billion | 181 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.02 | 0.02 | 12 |
Insight
Over the last 5 years, obligations to GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. are overwhelmingly concentrated in the Department of the Army, which accounts for essentially all of the $2.09 billion obligated and 181 of 193 awards. DCMA represents a negligible share of activity, with 12 awards totaling $0.02, indicating it functions primarily in an administrative or oversight role rather than as a substantive buying agency for this vendor. This agency mix reflects a highly concentrated procurement relationship with a single dominant customer.
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 = '0F875'
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 |
|---|---|---|---|---|
| 332993 | AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING | 2,091,284,219.00 | 2.09 billion | 192 |
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | -3,111.09 | -3.11 thousand | 1 |
Insight
Over the last 5 years, obligated dollars for GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. are overwhelmingly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for essentially all reported activity: 192 of 193 awards and about $2.09 billion obligated. NAICS 336414, Guided Missile and Space Vehicle Manufacturing, appears as a single outlier award with a negligible negative obligated amount of $3.11 thousand, indicating no meaningful diversification across top NAICS categories. This profile reflects a highly concentrated vendor portfolio tied to one primary manufacturing code.
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 = '0F875'
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 | 788,757,072.97 | 788.76 million | 44 |
| 2024 | 609,680,166.73 | 609.68 million | 44 |
| 2023 | 466,436,779.64 | 466.44 million | 42 |
| 2022 | 76,591,979.38 | 76.59 million | 36 |
| 2021 | 149,815,109.19 | 149.82 million | 27 |
Insight
Over the last 5 years, GENERAL DYNAMICS ORDNANCE AND TACTICAL SYSTEMS, INC. (CAGE 0F875) received 2.09 billion across 193 awards, with obligations concentrated in the most recent period. Annual obligations increased from 149.82 million in 2021 to 76.59 million in 2022, then rose sharply to 466.44 million in 2023, 609.68 million in 2024, and 788.76 million in 2025. Award counts were comparatively steady at 36 to 44 per year from 2022 through 2025, indicating that the growth in obligated dollars was driven more by larger award values than by a material increase in award volume.
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.