This page summarizes procurement activity for award W31P4Q23F0006 in agency ID 9700 across the last 10 years. The record shows 39 award actions and total obligated amounts of 1.61 billion.
Award Number
Award Number 9700 / W31P4Q23F0006 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number W31P4Q23F0006 under agency ID 9700, covering obligations and action history over the last 10 years.
Totals reflect the stated analysis window and the reported exact obligated amount of 1610114676.7, with an average action value of 41284991.71.
Overview
The award record for W31P4Q23F0006 shows 39 actions within the last 10 years and a total obligated amount of 1.61 billion. The exact obligated total is 1610114676.7, and the average action value is 41284991.71. This provides a compact view of activity for agency ID 9700 tied to this award number.
How to use this page
Use this page to review the scale and cadence of obligation activity associated with award W31P4Q23F0006. The action count, total obligated amount, and average action value support basic trend review and record verification within the stated analysis 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 = 'W31P4Q23F0006'
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,610,114,676.70 | 1.61 billion | 39 |
Insight
All reported obligations are concentrated in a single agency: the DEPT OF THE ARMY, which accounts for $1.61 billion across 39 awards in the 10-year window. This indicates that award activity for PIID W31P4Q23F0006 is fully concentrated within one agency, with no evidence of broader interagency distribution in the provided rows.
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 = 'W31P4Q23F0006'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 64059 | 1,610,114,676.70 | 1.61 billion | 39 |
Insight
LOCKHEED MARTIN CORPORATION is the sole top vendor identified for PIID W31P4Q23F0006 in the 10-year window, accounting for the full observed vendor concentration in this section. The company received 39 awards totaling $1.61 billion in obligated value. This indicates a highly concentrated award distribution with all observed obligations in this view flowing to a single vendor.
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 = 'W31P4Q23F0006'
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,610,114,676.70 | 1.61 billion | 39 |
Insight
Obligations for PIID W31P4Q23F0006 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $1.61 billion across 39 awards over the 10-year window. This indicates a highly specialized award profile with no diversification across other NAICS codes in the provided data. The award pattern is consistent with work centered in a single industrial base category.
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 = 'W31P4Q23F0006'
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 |
|---|---|---|---|---|
| 1410 | GUIDED MISSILES | 1,610,114,676.70 | 1.61 billion | 39 |
Insight
Obligations under PIID W31P4Q23F0006 are fully concentrated in PSC 1410, Guided Missiles, with $1.61 billion across 39 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The average obligation per award is substantial, consistent with a large missile-related acquisition or sustainment effort.
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 = 'W31P4Q23F0006'
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 |
|---|---|---|---|
| 2022 | 476,814,000.00 | 476.81 million | 2 |
| 2023 | 811,558,574.44 | 811.56 million | 15 |
| 2024 | 325,361,561.36 | 325.36 million | 4 |
| 2025 | -3,619,459.10 | -3.62 million | 18 |
Insight
Obligations for PIID W31P4Q23F0006 are concentrated in 2023, which recorded the highest annual amount at $811.56 million across 15 awards. Funding then declined sharply to $325.36 million in 2024 across 4 awards, indicating a reduced annual obligation level after the 2023 peak. In 2025, obligations were negative at $3.62 million across 18 awards, consistent with net deobligation activity or other downward adjustments rather than new funding growth.
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.