Federal Contractor

NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last 5 Years)

NORTHROP GRUMMAN SYSTEMS CORPORATION is a federal contractor with 517 award actions and $354.55 million obligated over the last 5 years.

The procurement record for NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 0RBN7, UEI EHBBTWLFSMW1) shows $354.55 million in obligated awards across 517 actions in the last 5 years. Most obligations came from the Department of the Navy, with additional activity from the Department of the Army and Department of the Air Force.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last 5 years and include readable and exact obligated totals where provided; annual, agency, and NAICS breakdowns are based on the supplied FPDS summary data.

CAGE Code
0RBN7
UEI
EHBBTWLFSMW1
Total Obligated
354.55 million
354,547,386.80
Award Actions
517
Average Action Value
685,778.31

About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity

NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 0RBN7, UEI EHBBTWLFSMW1) received $354.55 million across 517 FPDS awards in the last 5 years, for an average award value of $685,778.31. The award profile is concentrated in defense and national security work, with spending tied primarily to Navy, Army, and Air Force activity.

Agency mix and customer concentration

The DEPT OF THE NAVY is the dominant customer at $241.93 million across 185 awards, representing the clear majority of obligated dollars. The DEPT OF THE ARMY is the second-largest agency at $78.03 million and 150 awards, followed by the DEPT OF THE AIR FORCE at $34.98 million and 53 awards. Smaller obligations from DISA and the FBI indicate a limited but present footprint outside the core military customer base.

Industry profile based on NAICS activity

The largest NAICS category is 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, at $199.53 million across 52 awards, indicating a strong hardware and mission-systems concentration. Engineering Services (541330) is the next largest category by obligations at $49.14 million, but with a higher award count than 334511, suggesting broader tasking at smaller average values. Computer Systems Design Services (541512), R&D in the physical, engineering, and life sciences (541715), and wireless communications equipment manufacturing (334220) round out the top five, showing a mix of systems engineering, software, research, and communications-related work.

Annual contract trend over the analysis window

Obligations were heavily front-loaded in 2021 at $240.21 million across 239 awards, far exceeding every later year in the analysis window. Spending then dropped sharply to roughly $48 million in both 2022 and 2023, before declining further to $10.12 million in 2024 and $7.42 million in 2025 to date. Award volume followed the same pattern, indicating a contraction from a large 2021 funding peak rather than a stable annual run rate.

How to interpret this page

This summary uses FPDS-observed obligations and award counts tied to CAGE 0RBN7 and UEI EHBBTWLFSMW1 over the last 5 years. Agency, NAICS, and annual figures are grouped by reported FPDS fields and reflect obligated dollars, not contract ceiling or total potential value. Results should be interpreted as an award-history snapshot within the selected period, subject to FPDS reporting completeness and timing.

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 = '0RBN7'
        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
1700 DEPT OF THE NAVY 241,932,063.66 241.93 million 185
2100 DEPT OF THE ARMY 78,028,905.24 78.03 million 150
5700 DEPT OF THE AIR FORCE 34,983,869.13 34.98 million 53
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 5,158,746.96 5.16 million 10
1549 FEDERAL BUREAU OF INVESTIGATION 704,492.00 704.49 thousand 3
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 263,871.74 263.87 thousand 2
1900 STATE, DEPARTMENT OF 115,135.00 115.14 thousand 3
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -6,639,696.93 -6.64 million 111

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION’s obligations are highly concentrated in the Department of the Navy, which accounts for $241.93 million of the firm’s $354.55 million total, or the majority of obligated value across 185 awards. The Department of the Army is the second-largest customer at $78.03 million across 150 awards, followed by the Department of the Air Force at $34.98 million across 53 awards, indicating a defense-heavy award distribution across the military departments. Obligations outside the major DoD customers are limited and diffuse, with DISA at $5.16 million and all other listed agencies each below $1 million in obligated value. DCMA shows a negative obligated value of $6.64 million across 111 awards, which reduces net obligations in this period.

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 = '0RBN7'
        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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 199,531,594.56 199.53 million 52
541330 ENGINEERING SERVICES 49,138,838.64 49.14 million 146
541512 COMPUTER SYSTEMS DESIGN SERVICES 26,380,383.34 26.38 million 43
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 24,896,294.94 24.90 million 38
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 19,735,644.50 19.74 million 34
517919 ALL OTHER TELECOMMUNICATIONS 12,373,472.43 12.37 million 37
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 11,312,086.61 11.31 million 52
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 8,776,488.83 8.78 million 5
334111 ELECTRONIC COMPUTER MANUFACTURING 930,470.14 930.47 thousand 17
541519 OTHER COMPUTER RELATED SERVICES 671,128.96 671.13 thousand 5

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 0RBN7) received $354.55 million across 517 awards, with obligations concentrated in NAICS 334511, which accounts for $199.53 million across 52 awards. The next largest obligation areas are engineering services (541330) at $49.14 million across 146 awards, followed by computer systems design services (541512) at $26.38 million and physical sciences R&D (541715) at $24.90 million. This profile indicates a mix of high-dollar manufacturing awards and a broader base of lower-dollar technical and engineering support awards, with limited obligations outside the top categories.

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 = '0RBN7'
        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 7,420,585.89 7.42 million 29
2024 10,119,052.52 10.12 million 35
2023 48,644,440.89 48.64 million 122
2022 48,149,136.22 48.15 million 92
2021 240,214,171.28 240.21 million 239

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 0RBN7) received $354.55 million across 517 awards, averaging $685.8K per award. Obligations are heavily concentrated in 2021, which accounts for $240.21 million and 239 awards, far exceeding subsequent years. Annual obligations then fell sharply and remained lower in 2022–2025, ranging from $7.42 million to $48.64 million, with award volumes also declining from 122 in 2023 to 29 in 2025.

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.