This page presents procurement activity for award number W31P4Q18C0130 in agency ID 9700 over the last 10 years. It covers 193 award actions with total obligated spending of 3,158,372,223.06 and an average action value of 16,364,622.92.
Award Number
Award Number 9700 / W31P4Q18C0130 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number W31P4Q18C0130 under agency ID 9700, summarizing obligations and actions over the last 10 years.
Totals reflect the provided analysis window and may include multiple actions tied to the same award number.
Overview
The award record for W31P4Q18C0130 shows sustained federal procurement activity across the last 10 years. Total obligated amount is 3,158,372,223.06 across 193 actions, which yields an average action value of 16,364,622.92. This page is intended to support review of the award-level obligation pattern rather than a single transaction.
How to use this page
Use this page to assess the scale and frequency of award actions associated with W31P4Q18C0130. The totals can help compare this award against other FPDS records in agency ID 9700 and identify periods of higher or lower obligation activity. The dataset is limited to the provided analysis window and award identifier.
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 = 'W31P4Q18C0130'
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 | 3,158,372,223.06 | 3.16 billion | 193 |
Insight
Over the 10-year window for award PIID W31P4Q18C0130, obligated dollars are fully concentrated in DEPT OF THE ARMY. The agency accounts for $3.16 billion across 193 awards, indicating a highly concentrated award profile with no other agencies represented in this section. This distribution suggests the award activity captured here is exclusively associated with a single agency relationship.
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 = 'W31P4Q18C0130'
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 | 04939 | 3,158,372,223.06 | 3.16 billion | 193 |
Insight
LOCKHEED MARTIN CORPORATION (CAGE 04939) is the sole top vendor for PIID W31P4Q18C0130 in the 10-year window, with $3.16 billion in obligated value across 193 awards. This indicates a highly concentrated award distribution with all reported obligation volume in this section attributed to one vendor. The frequency of awards suggests sustained vendor reliance over the period rather than a broad vendor base.
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 = 'W31P4Q18C0130'
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 | 3,158,372,223.06 | 3.16 billion | 193 |
Insight
Obligations under this award are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $3.16 billion obligated across 193 actions over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The volume of actions suggests repeated contract activity within the same industrial base rather than broad distribution across multiple sectors.
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 = 'W31P4Q18C0130'
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 | 3,158,372,223.06 | 3.16 billion | 193 |
Insight
For award W31P4Q18C0130 over the 10-year window, obligations are fully concentrated in PSC 1410, Guided Missiles, with $3.16 billion across 193 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of award actions suggests repeated obligations within the same product category rather than broad contract distribution.
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 = 'W31P4Q18C0130'
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 |
|---|---|---|---|
| 2018 | 632,322,269.19 | 632.32 million | 4 |
| 2019 | 727,736,511.60 | 727.74 million | 28 |
| 2020 | 710,319,168.01 | 710.32 million | 22 |
| 2021 | 1,055,560,756.44 | 1.06 billion | 36 |
| 2022 | 31,750,233.19 | 31.75 million | 22 |
| 2023 | 2,223,917.00 | 2.22 million | 34 |
| 2024 | -19,546.55 | -19.55 thousand | 31 |
| 2025 | -1,521,085.82 | -1.52 million | 16 |
Insight
Obligations for PIID W31P4Q18C0130 were heavily concentrated in 2018–2021, with annual totals ranging from $632.32 million to $1.06 billion and a peak in 2021. Award volume increased from 4 awards in 2018 to 36 in 2021, then remained relatively elevated in 2022–2025 despite a sharp decline in obligated value. From 2022 onward, annual obligations fell to $31.75 million in 2022, $2.22 million in 2023, and negative amounts in 2024 and 2025, indicating materially reduced net funding activity in the later years of the 10-year window.
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.