This page summarizes award activity for PIID W31P4Q18C0130 during the last 5 years. The award shows 139 actions with total obligated amounts of 1.09 billion dollars.
Award Number
Award Number 9700 / W31P4Q18C0130 Federal Contract Action Summary (Last 5 Years)
Federal procurement award page for award number W31P4Q18C0130 under agency ID 9700, covering obligations and action history over the last 5 years.
Totals are based on the provided analysis window and reflect the exact obligated amount of 1,087,994,274.26.
Overview
This award record covers PIID W31P4Q18C0130 for agency ID 9700 in the last 5 years. It includes 139 award actions and total obligated dollars of 1,087,994,274.26, with an average action value of 7,827,296.94. The figures provide a compact view of award activity and funding level across the analysis window.
How to use this page
Use this page to review the award's obligation total, action count, and average action value in one place. It is suited to quick analysis of award volume and funding concentration for the specified PIID and agency ID.
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 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,087,994,274.26 | 1.09 billion | 139 |
Insight
Within the 5-year window for award PIID W31P4Q18C0130, obligations are fully concentrated within DEPT OF THE ARMY. The Army accounts for the entire observed total of $1.09 billion across 139 awards, indicating a single-agency funding distribution with no visible diversification in the provided rows. This level of concentration suggests the award relationship is highly centered on one obligating agency.
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 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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 04939 | 1,087,994,274.26 | 1.09 billion | 139 |
Insight
Over the 5-year window, obligations for PIID W31P4Q18C0130 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 04939). This vendor accounts for 139 awards and $1.09 billion in total obligated value, indicating a highly concentrated award distribution rather than a diversified 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 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,087,994,274.26 | 1.09 billion | 139 |
Insight
The award is highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $1.09 billion in obligations across 139 awards over the past 5 years. This indicates the procurement activity is centered in a single industrial category rather than spread across multiple NAICS codes. The volume of awards alongside the obligated value suggests sustained procurement within this mission area.
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 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 |
|---|---|---|---|---|
| 1410 | GUIDED MISSILES | 1,087,994,274.26 | 1.09 billion | 139 |
Insight
Obligations under PIID W31P4Q18C0130 are fully concentrated in PSC 1410, Guided Missiles, with $1.09 billion obligated across 139 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification across other product service codes in the provided data. The award pattern suggests sustained mission-specific spending rather than broad commodity or services procurement.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 are heavily concentrated in 2021, when annual obligated dollars reached 1.06 billion across 36 awards. Activity then declined sharply in 2022 and 2023 to 31.75 million and 2.22 million, respectively, while award counts remained in the 20s to 30s range, indicating a much lower dollar value per award after 2021. In 2024 and 2025, obligations turned slightly negative, suggesting net deobligations during those years, even as 31 awards were recorded in 2024 and 16 in 2025.
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.