Award Number

Award Number 9700 / W31P4Q19C0076 Federal Contract Action Summary (Last 5 Years)

Federal procurement summary for award number W31P4Q19C0076 under agency 9700, covering the last 5 years of action and obligation activity.

This award record shows 128 actions over the last 5 years, with total obligations of 1.18 billion dollars. The average action value is 9,257,432.14.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are shown as provided, with a readable total of 1.18 billion and an exact total of 1,184,951,313.6.

Agency ID
9700
PIID
W31P4Q19C0076
Type
Award
Total Obligated
1.18 billion
1,184,951,313.60
Actions
128
Average Action Value
9,257,432.14

Overview

This page summarizes award number W31P4Q19C0076 for agency 9700 across the last 5 years. The record includes 128 award actions and total obligations of 1,184,951,313.6, with an average action value of 9,257,432.14.

How to use this page

Use this page to review the award's recent obligation history and action volume in one place. It is suited to basic award-level analysis, comparing total obligated dollars, action count, and average action value over the selected window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W31P4Q19C0076'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
2100 DEPT OF THE ARMY 1,184,951,313.60 1.18 billion 128

Insight

Over the past 5 years, obligations for PIID W31P4Q19C0076 are fully concentrated in a single top agency: the Department of the Army. That agency accounts for $1.18 billion across 128 awards, indicating a highly concentrated award distribution with no diversification among other agencies in the provided rows. This pattern suggests the award activity is primarily Army-driven within the observed period.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W31P4Q19C0076'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE 0FCZ3 1,184,951,313.60 1.18 billion 128

Insight

The award’s obligation history over the 5-year window is highly concentrated in a single vendor. RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE (CAGE 0FCZ3) accounts for $1.18 billion across 128 awards, indicating a sustained and dominant vendor relationship for PIID W31P4Q19C0076. This distribution suggests minimal vendor dispersion within the observed period.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W31P4Q19C0076'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,184,951,313.60 1.18 billion 128

Insight

Over the past 5 years, award PIID W31P4Q19C0076 is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $1.18 billion across 128 awards, indicating a sustained and highly concentrated procurement profile with no diversification across other NAICS codes in the provided data.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W31P4Q19C0076'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
1427 GUIDED MISSILE SUBSYSTEMS 1,184,951,313.60 1.18 billion 128

Insight

Obligations for PIID W31P4Q19C0076 are fully concentrated in PSC 1427, Guided Missile Subsystems, with $1.18 billion obligated across 128 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award count suggests recurring activity within the same product/service category rather than a one-time obligation event.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W31P4Q19C0076'
    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 ASC
Year Total Obligated Readable Actions
2021 197,885,002.97 197.89 million 25
2022 669,556,819.21 669.56 million 34
2023 166,840,321.23 166.84 million 30
2024 150,699,341.17 150.70 million 21
2025 -30,170.98 -30.17 thousand 18

Insight

Obligations for PIID W31P4Q19C0076 were heavily concentrated in 2022, when annual obligated dollars reached 669.56 million, well above every other year in the 5-year window. Funding then declined sharply to 166.84 million in 2023 and 150.70 million in 2024, with award counts also easing from 34 in 2022 to 21 in 2024. In 2025, obligations were essentially flat to slightly negative (-30.17 thousand) across 18 awards, indicating minimal net activity relative to prior years.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.