In the last 5 years, RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE recorded 516 award actions and $4,680,927,192.29 in total obligated amounts. Most obligations came from the Department of the Army, and the largest NAICS category was Guided Missile and Space Vehicle Manufacturing.
Federal Contractor
RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE Federal Contract Obligations (Last 5 Years)
FPDS procurement profile for RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE (CAGE 0FCZ3, UEI WGB7GAKM7A68) covering federal awards over the last 5 years.
Totals reflect obligated amounts and award counts in the analysis window; one DCMA row shows zero obligated value, and one NAICS row includes a small negative obligation.
About RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE federal contract activity
RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE recorded 516 FPDS awards over the last 5 years, with total obligations of $4.68 billion and an average award value of $9.07 million. The profile is highly concentrated in Army-related procurement, indicating a sustained role supporting a specific defense mission set.
Agency mix and customer concentration
The Department of the Army accounts for 515 of 516 awards and essentially all obligated dollars, making it the dominant customer by both volume and value. The only other recorded agency is the Defense Contract Management Agency with one award and no obligated dollars, which suggests an administrative or oversight transaction rather than a substantive procurement relationship.
Industry profile based on NAICS activity
NAICS 336414, Guided Missile and Space Vehicle Manufacturing, dominates the vendor's activity with $4.63 billion across 479 awards, showing that the portfolio is overwhelmingly centered on missile-related production. Engineering Services under NAICS 541330 adds $52.45 million across 32 awards, while NAICS 541710 shows a small net negative obligation, likely reflecting modifications or deobligations within that account.
Annual contract trend over the analysis window
Annual obligations rose sharply from $276.29 million in 2021 to a peak of $1.52 billion in 2023, then remained elevated at $1.20 billion in 2024 and $929.43 million in 2025. Award counts do not move in lockstep with dollars, which points to a mix shift toward fewer, higher-value actions in the peak years.
How to interpret this page
This summary is based on FPDS-observed obligations and award counts for the vendor matched by CAGE code 0FCZ3 and UEI WGB7GAKM7A68 over the last 5 years. Agency, NAICS, and annual views are derived from the provided aggregates; negative obligations are reported as supplied and may reflect adjustments or deobligations rather than new procurement value.
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 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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 4,680,927,192.29 | 4.68 billion | 515 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Over the last 5 years, obligations for RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE are overwhelmingly concentrated in the Department of the Army, which accounts for $4.68 billion across 515 awards. DCMA appears in the record with a single award but no obligated dollars, indicating negligible funding outside the Army. This profile reflects a highly concentrated customer base and limited agency diversification during the 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 = '0FCZ3'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 4,628,542,006.91 | 4.63 billion | 479 |
| 541330 | ENGINEERING SERVICES | 52,446,064.23 | 52.45 million | 32 |
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | -60,878.85 | -60.88 thousand | 5 |
Insight
Over the last 5 years, obligations to RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE are highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $4.63 billion across 479 awards, or nearly all of the vendor’s $4.68 billion total obligated. The next largest category, NAICS 541330 Engineering Services, represents a much smaller $52.45 million across 32 awards. NAICS 541710 Research and Development in the Physical, Engineering, and Life Sciences is negligible and slightly negative at -$60.88 thousand across 5 awards, indicating minimal activity outside the core manufacturing line.
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 5 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 |
| 2024 | 1,204,647,461.97 | 1.20 billion | 110 |
| 2023 | 1,518,197,471.02 | 1.52 billion | 75 |
| 2022 | 752,366,278.91 | 752.37 million | 100 |
| 2021 | 276,287,856.26 | 276.29 million | 133 |
Insight
Over the last 5 years, RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE obligated $4.68 billion across 516 awards, averaging $9.07 million per award. Obligations are highly concentrated in the most recent three years: 2023 through 2025 account for $3.65 billion, or about 78% of the 5-year total. Annual obligations increased sharply from $276.29 million in 2021 to a peak of $1.52 billion in 2023, then declined to $1.20 billion in 2024 and $929.43 million in 2025, while award counts remained relatively high at 75 to 110 per year.
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.