Federal Contractor

BAE SYSTEMS ORDNANCE SYSTEMS INC Federal Contract Obligations (Last Year)

BAE SYSTEMS ORDNANCE SYSTEMS INC recorded 43 award actions and 164.06 million in obligated federal spending in the last full year, led by Department of the Army awards.

In the last full year, BAE SYSTEMS ORDNANCE SYSTEMS INC (CAGE 6NDQ0, UEI PFGVR4NPLNB2) received 164,062,561.71 in obligated federal awards across 43 actions. Most obligations came from the Department of the Army, with activity concentrated in ammunition and facilities support work.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year of readable FPDS award data and may include actions with zero obligated value.

CAGE Code
6NDQ0
UEI
PFGVR4NPLNB2
Total Obligated
164.06 million
164,062,561.71
Award Actions
43
Average Action Value
3,815,408.41

About BAE SYSTEMS ORDNANCE SYSTEMS INC federal contract activity

BAE SYSTEMS ORDNANCE SYSTEMS INC (CAGE 6NDQ0, UEI PFGVR4NPLNB2) received 164.06 million in obligated FPDS activity across 43 awards in the last full year, for an average award value of 3.82 million. The vendor’s award profile is dominated by a small number of higher-value obligations rather than a broad distribution of many low-dollar awards.

Agency mix and customer concentration

The Department of the Army accounted for essentially all observed obligation, with 164.06 million across 42 awards. NASA appears once in the period but with no obligated value, indicating a negligible share of funded activity in this window.

Industry profile based on NAICS activity

Obligated activity is concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, at 90.71 million across 4 awards, and NAICS 561210, Facilities Support Services, at 73.15 million across 37 awards. Smaller activity appears in NAICS 541715 at 200.46 thousand, while NAICS 325920 shows one award with zero obligated value.

Annual contract trend over the analysis window

The annual trend shows 2025 as the full analysis year, with 164.06 million obligated across 43 awards. With only one year in scope, the data support a snapshot of current funding concentration rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS-observed awards tied to CAGE code 6NDQ0 and UEI PFGVR4NPLNB2 during the last full year. Agency, NAICS, and annual totals reflect obligated dollars as reported in the provided dataset, including awards with zero obligated value where present.

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 = '6NDQ0'
        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 164,062,561.71 164.06 million 42
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 0.00 0.00 1

Insight

During the last full year, BAE SYSTEMS ORDNANCE SYSTEMS INC received 164.06 million across 43 awards, with an average award value of 3.82 million. Obligations were overwhelmingly concentrated in the DEPT OF THE ARMY, which accounted for 164.06 million across 42 awards, indicating near-total reliance on a single agency customer. NATIONAL AERONAUTICS AND SPACE ADMINISTRATION recorded one award with no obligated dollars, contributing to volume but not value.

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 = '6NDQ0'
        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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 90,714,750.38 90.71 million 4
561210 FACILITIES SUPPORT SERVICES 73,147,355.45 73.15 million 37
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 200,455.88 200.46 thousand 1
325920 EXPLOSIVES MANUFACTURING 0.00 0.00 1

Insight

BAE SYSTEMS ORDNANCE SYSTEMS INC (CAGE 6NDQ0) received $164.06 million across 43 awards in the last full year, with obligations concentrated in two NAICS codes. NAICS 332993, Ammunition (Except Small Arms) Manufacturing, accounted for $90.71 million across 4 awards, while NAICS 561210, Facilities Support Services, accounted for $73.15 million across 37 awards; together they represent essentially all obligated dollars in the period. Remaining obligations were minimal, with one award in NAICS 541715 totaling $200.46 thousand and one award in NAICS 325920 carrying 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 = '6NDQ0'
        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 164,062,561.71 164.06 million 43

Insight

For the last full year, BAE SYSTEMS ORDNANCE SYSTEMS INC (CAGE 6NDQ0) obligated $164.06 million across 43 awards, averaging $3.82 million per award. The annual activity is concentrated in a single year in the 1-year window, so no within-period trend can be assessed from the provided data. The award profile indicates moderate distribution across multiple actions rather than reliance on a single 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.