This page summarizes the federal award record for PIID W31P4Q19C0076 within agency ID 9700. Over the last 10 years, the award shows 167 actions and total obligated dollars of 1,694,838,191.74.
Award Number
Award Number 9700 / W31P4Q19C0076 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number W31P4Q19C0076 under agency ID 9700, covering obligations and action activity over the last 10 years.
Totals reflect the provided analysis window and may include multiple award actions under the same award number.
Overview
The award record for PIID W31P4Q19C0076 shows 167 recorded actions in the last 10 years. Total obligated value is 1,694,838,191.74, with an average action value of 10,148,731.69. These figures describe the scale of activity associated with this award number in agency ID 9700.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for W31P4Q19C0076. It is useful for comparing this award against other awards in agency ID 9700 over the same 10-year 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 10 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,694,838,191.74 | 1.69 billion | 167 |
Insight
Within the 10-year window for award PIID W31P4Q19C0076, all reported obligated dollars in the top_agencies view are concentrated in a single agency: the DEPT OF THE ARMY. The Army accounts for $1.69 billion across 167 awards, indicating a highly concentrated obligation pattern with no other agencies appearing in the provided rows. This suggests the award activity is effectively driven by one agency relationship rather than being distributed across multiple departments.
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 10 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,694,838,191.74 | 1.69 billion | 167 |
Insight
For this award over the 10-year window, obligations are fully concentrated with a single vendor: RAYTHEON/LOCKHEED MARTIN JAVELIN JOINT VENTURE (CAGE 0FCZ3). This vendor accounts for $1.69 billion across 167 awards, indicating a highly concentrated award pattern with no diversification across other vendors in the provided data.
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 10 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,694,838,191.74 | 1.69 billion | 167 |
Insight
Obligations for PIID W31P4Q19C0076 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $1.69 billion across 167 awards over the 10-year window. This indicates a highly focused procurement profile with no observed diversification across NAICS codes in the provided data. The award pattern suggests sustained activity in a single industrial category rather than a broad distribution of obligations.
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 10 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,694,838,191.74 | 1.69 billion | 167 |
Insight
Over the 10-year window, obligations under PIID W31P4Q19C0076 are fully concentrated in PSC 1427, Guided Missile Subsystems, totaling $1.69 billion across 167 awards. This indicates a highly focused procurement profile with no observable PSC diversification in the provided data. The volume of awards suggests repeated purchasing activity within the same product category rather than a broad mix of supplies or services.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2019 | 257,338,779.63 | 257.34 million | 8 |
| 2020 | 252,548,098.51 | 252.55 million | 31 |
| 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 are concentrated in 2022, when funding peaked at 669.56 million across 34 awards, well above all other years in the period. Outside 2022, annual obligations were materially lower and generally ranged from 150.70 million to 257.34 million, with award counts varying from 8 to 31. The 2025 figure is effectively flat at -30.17 thousand, indicating no material obligated value in that year 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.