In the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION (UEI FNBAMFZ3GD53) received $453,188,068.09 in federal obligations across 85 award actions, for an average action value of $5.33 million. The Department of the Army accounted for most obligations at $386.61 million, while the Missile Defense Agency accounted for $66.58 million.
Federal Contractor
NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last Year)
NORTHROP GRUMMAN SYSTEMS CORPORATION, CAGE 9F909, recorded $453.19 million in federal obligations across 85 award actions in the last full year.
Totals reflect obligations in the selected analysis window and are grouped by agency, NAICS, and annual trend.
About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity
NORTHROP GRUMMAN SYSTEMS CORPORATION recorded $453.19 million in obligated FPDS action value across 85 awards in the last full year, for an average award value of $5.33 million. The vendor’s procurement profile reflects a concentrated federal footprint with most obligations tied to a small number of large awards.
Agency mix and customer concentration
The Department of the Army accounted for the majority of obligated dollars at $386.61 million across 38 awards, while the Missile Defense Agency (MDA) contributed $66.58 million across 47 awards. This mix indicates substantial activity across both Army and missile-defense procurement channels, with dollar concentration heavier at the Army and award volume more evenly split.
Industry profile based on NAICS activity
Award activity was dominated by NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which represented $332.64 million across 33 awards. Smaller but still material obligations fell under NAICS 541511, Custom Computer Programming Services, at $66.58 million across 46 awards, and NAICS 541330, Engineering Services, at $53.98 million across 5 awards. A single minor action appeared under NAICS 541715 for $500, indicating the portfolio is highly concentrated in defense manufacturing and technical support work.
Annual contract trend over the analysis window
The annual trend shows all recorded activity in 2025, totaling $453.19 million across 85 awards. With only one year in the analysis window, the data support a snapshot of current-year procurement volume rather than a multi-year growth or decline assessment.
How to interpret this page
This summary is based on FPDS obligation data for the vendor’s CAGE code 9F909 and UEI FNBAMFZ3GD53 over the last full year. Dollar totals reflect obligated amounts, counts reflect award actions in the dataset, and category summaries are derived from the top agencies and NAICS codes present in the provided analysis window.
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 = '9F909'
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 | 386,611,098.98 | 386.61 million | 38 |
| 97JC | MISSILE DEFENSE AGENCY (MDA) | 66,576,969.11 | 66.58 million | 47 |
Insight
During the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION received $453.19 million across 85 awards, with obligations concentrated in two agencies. The DEPT OF THE ARMY accounted for $386.61 million across 38 awards, or about 85% of total obligated value, indicating a strong concentration in Army contracting. The MISSILE DEFENSE AGENCY (MDA) obligated $66.58 million across 47 awards, representing the remaining 15% and a higher award count but much lower dollar value than the Army.
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 = '9F909'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 332,635,949.91 | 332.64 million | 33 |
| 541511 | CUSTOM COMPUTER PROGRAMMING SERVICES | 66,576,469.11 | 66.58 million | 46 |
| 541330 | ENGINEERING SERVICES | 53,975,149.07 | 53.98 million | 5 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 500.00 | 500.00 | 1 |
Insight
Over the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION’s obligations were concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounted for $332.64 million across 33 awards, or roughly 73% of the vendor’s $453.19 million total. The next largest activity was NAICS 541511, Custom Computer Programming Services, with $66.58 million across 46 awards, followed by NAICS 541330, Engineering Services, with $53.98 million across 5 awards. Award volume was more dispersed than dollars, with 85 awards overall and a relatively high count in 541511 but substantially larger obligations in 336414.
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 = '9F909'
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 | 453,188,068.09 | 453.19 million | 85 |
Insight
During the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 9F909) recorded $453.19 million in total obligated dollars across 85 awards, for an average award value of about $5.33 million. Because the window contains a single annual observation, no multi-year trend can be assessed from this view. The award pattern indicates moderate distribution across multiple actions rather than reliance on a small number of very large awards.
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.