Federal Contractor

RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE Federal Contract Obligations (Last Year)

RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE received 98 federal awards in the last full year, totaling $929.43 million in obligations, with all spending recorded at the Department of the Army.

In the last full year, this vendor’s federal activity was concentrated in Army procurement, averaging $9.48 million per award across 98 actions. Most obligations were classified under Guided Missile and Space Vehicle Manufacturing, with smaller amounts in Engineering Services and a minor negative obligation in R&D.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the analysis window provided and use obligated amounts from FPDS records for CAGE 0FCZ3 and UEI WGB7GAKM7A68.

CAGE Code
0FCZ3
UEI
WGB7GAKM7A68
Total Obligated
929.43 million
929,428,124.13
Award Actions
98
Average Action Value
9,483,960.45

About RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE federal contract activity

RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE recorded 98 FPDS-observed awards in the last full year, with total obligated value of 929.43 million and an average award value of 9.48 million. The vendor profile is concentrated and large-scale, indicating sustained federal demand rather than a broad spread of smaller transactions.

Agency mix and customer concentration

All obligated value in the analysis window came from the Department of the Army, which accounted for the full 929.43 million across 98 awards. This indicates a highly concentrated customer base with no material evidence of cross-agency diversification in the period reviewed.

Industry profile based on NAICS activity

The portfolio was dominated by NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which represented 889.94 million across 86 awards. NAICS 541330, Engineering Services, added 39.50 million across 11 awards, while NAICS 541710 showed a small negative obligation of 5.70 thousand on one record, which is immaterial relative to the overall volume.

Annual contract trend over the analysis window

The annual trend shows all observed obligations in 2025, totaling 929.43 million across 98 awards. Because only one year appears in the window, the data support a point-in-time concentration assessment rather than a multi-year growth or decline interpretation.

How to interpret this page

This summary is based on FPDS-observed awards tied to CAGE 0FCZ3 and UEI WGB7GAKM7A68 for the last full year. Obligated amounts are summarized as reported, with NAICS and agency totals aggregated across matching records; negative obligations are retained as provided and may reflect deobligations or other contract adjustments.

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 = '0FCZ3'
        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 929,428,124.13 929.43 million 98

Insight

During the last full year, RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE’s obligations were fully concentrated at the Department of the Army, which accounted for the entire $929.43 million in reported obligations across 98 awards. This indicates a highly concentrated customer base with no diversification across agencies in the observed period. The average award value was approximately $9.48 million, suggesting a mix of individual awards within a single-agency portfolio.

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 = '0FCZ3'
        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 889,936,214.60 889.94 million 86
541330 ENGINEERING SERVICES 39,497,611.89 39.50 million 11
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES -5,702.36 -5.70 thousand 1

Insight

Over the last full year, obligations for RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE were highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounted for $889.94 million across 86 awards, or about 95.8% of total obligations. Engineering Services (541330) was a distant second at $39.50 million across 11 awards, indicating limited diversification outside the core manufacturing activity. NAICS 541710 recorded a negligible negative obligation of $5.7 thousand on one award, which does not materially affect the overall distribution.

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 = '0FCZ3'
        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 929,428,124.13 929.43 million 98

Insight

During the last full year, RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE (CAGE 0FCZ3) recorded $929.43 million in obligated value across 98 awards, for an average award value of about $9.48 million. With only one annual data point in the 1-year window, no year-over-year trend can be assessed. The volume and obligated dollars indicate a moderately distributed award profile rather than reliance on a single large award.

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.