Federal Contractor

NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last Year)

Federal procurement profile for NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 90099, UEI LCV2N9FVV739) covering awards in the last full year.

In the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION received 691 award actions totaling $367.50 million in obligations. Most of the dollar value came from the Department of the Navy, while the Defense Logistics Agency accounted for most of the award actions.

Generated at 03/21/2026

Analysis period: Last full year

This page summarizes the last full year of readable FPDS obligations and may not reflect all contract modifications or unreported records.

CAGE Code
90099
UEI
LCV2N9FVV739
Total Obligated
367.50 million
367,495,194.86
Award Actions
691
Average Action Value
531,830.96

About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity

NORTHROP GRUMMAN SYSTEMS CORPORATION recorded $367.50 million in obligations across 691 awards in the last full year, for an average award value of $531,830.96. The vendor’s activity is concentrated in defense procurement, with awards split primarily between the Department of the Navy and the Defense Logistics Agency.

Agency mix and customer concentration

The Department of the Navy accounted for $331.93 million across 137 awards, representing the dominant share of obligated dollars. The Defense Logistics Agency issued 554 awards totaling $35.56 million, indicating a much higher transaction count but materially lower dollar concentration than the Navy.

Industry profile based on NAICS activity

NAICS 541330 Engineering Services was the primary spending category, with $304.55 million across 101 awards, showing a strong services-oriented profile. The remaining obligations were spread across manufacturing and ship-related codes, led by 335313 Switchgear and Switchboard Apparatus Manufacturing at $31.48 million across 487 awards and 336611 Ship Building and Repairing at $24.62 million across 23 awards.

Annual contract trend over the analysis window

The annual trend for 2025 shows $367.50 million in obligations over 691 awards, and no other year is present in the provided analysis window. As a result, the available trend data supports a single-year snapshot rather than a multi-year trajectory.

How to interpret this page

This summary is based only on the supplied FPDS Query aggregates for the last full year. Obligations are grouped by vendor, agency, NAICS code, and annual totals; award counts and average award value are reported as provided, without adding unverified assumptions or external data.

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 = '90099'
        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
1700 DEPT OF THE NAVY 331,931,802.02 331.93 million 137
97AS DEFENSE LOGISTICS AGENCY 35,563,392.84 35.56 million 554

Insight

During the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION received 367.50 million across 691 awards, with obligations concentrated primarily in the DEPT OF THE NAVY at 331.93 million, or about 90% of total obligated dollars, across 137 awards. The DEFENSE LOGISTICS AGENCY accounted for 35.56 million across 554 awards, indicating a materially higher award count but much lower dollar value than the Navy. This pattern suggests a concentrated dollar relationship with the Navy and a higher-volume, lower-dollar award profile with DLA.

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 = '90099'
        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
541330 ENGINEERING SERVICES 304,548,542.31 304.55 million 101
335313 SWITCHGEAR AND SWITCHBOARD APPARATUS MANUFACTURING 31,478,668.03 31.48 million 487
336611 SHIP BUILDING AND REPAIRING 24,615,413.71 24.62 million 23
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 4,045,314.81 4.05 million 65
332911 INDUSTRIAL VALVE MANUFACTURING 1,079,706.00 1.08 million 1
332119 METAL CROWN, CLOSURE, AND OTHER METAL STAMPING (EXCEPT AUTOMOTIVE) 633,606.00 633.61 thousand 2
332722 BOLT, NUT, SCREW, RIVET, AND WASHER MANUFACTURING 401,471.00 401.47 thousand 1
334513 INSTRUMENTS AND RELATED PRODUCTS MANUFACTURING FOR MEASURING, DISPLAYING, AND CONTROLLING INDUSTRIAL PROCESS VARIABLES 301,152.00 301.15 thousand 4
332912 FLUID POWER VALVE AND HOSE FITTING MANUFACTURING 237,114.00 237.11 thousand 1
332510 HARDWARE MANUFACTURING 116,885.00 116.89 thousand 1

Insight

NORTHROP GRUMMAN SYSTEMS CORPORATION’s last full year obligations under CAGE 90099 were highly concentrated in NAICS 541330 (Engineering Services), which accounted for $304.55 million of $367.50 million total obligated, or roughly 83 percent, across 101 awards. The second-largest NAICS, 335313 (Switchgear and Switchboard Apparatus Manufacturing), generated $31.48 million across 487 awards, indicating a much smaller dollar share but high award frequency. NAICS 336611 (Ship Building and Repairing) contributed $24.62 million across 23 awards, while all remaining NAICS codes were individually below $4.1 million, showing a steep drop-off after the top three 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 = '90099'
        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 367,495,194.86 367.50 million 691

Insight

During the last full year, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 90099) received $367.50 million in obligations across 691 awards, for an average award value of $531,830.96. This reflects a relatively broad distribution of obligations across many actions rather than reliance on a small number of large awards. With only one annual data point in the 1-year window, no year-over-year trend can be assessed from the provided data.

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.