Award Number

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

FPDS award summary for PIID W31P4Q17C0006 under agency ID 9700, showing obligations and action history over the last 5 years.

This award record covers PIID W31P4Q17C0006 for agency ID 9700 over the last 5 years. The award shows 66 actions and total obligated amount of -85.42 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may differ from single-action views because the average action value is based on all 66 actions.

Agency ID
9700
PIID
W31P4Q17C0006
Type
Award
Total Obligated
-85.42 million
-85,422,674.30
Actions
66
Average Action Value
-1,294,282.94

Overview

This award record is identified by PIID W31P4Q17C0006 and is associated with agency ID 9700. Over the last 5 years, the award has 66 reported actions and total obligated value of -$85,422,674.30, with an average action value of -$1,294,282.94.

How to use this page

Use this page to review the award’s action count, total obligation, and average action value within the stated analysis window. The negative obligated total is presented exactly as provided in the source data and should be interpreted in the context of the underlying FPDS records.

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 = 'W31P4Q17C0006'
    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 -85,422,674.30 -85.42 million 66

Insight

Within the 5-year window, all referenced obligations for PIID W31P4Q17C0006 are concentrated in a single top agency: the Department of the Army. That agency accounts for -$85.42 million across 66 awards, indicating a highly concentrated obligation pattern rather than a distributed agency footprint. The negative obligated total should be interpreted in the context of deobligations or downward funding adjustments associated with this award record.

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 = 'W31P4Q17C0006'
        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 64059 -85,422,674.30 -85.42 million 66

Insight

Over the 5-year window, all reported obligation activity for PIID W31P4Q17C0006 is concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059). The vendor accounts for 66 awards and a net total obligated amount of -$85.42 million, indicating substantial downward adjustment or deobligation activity rather than positive funding accumulation. This pattern reflects highly concentrated vendor dependence and significant volatility in the award’s obligated value.

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 = 'W31P4Q17C0006'
    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
336419 OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING -85,422,674.30 -85.42 million 66

Insight

All obligated dollars in the 5-year window are concentrated in NAICS 336419, Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing, with -$85.42 million across 66 awards. This indicates a single-industry profile for this award, with no diversification across additional NAICS codes in the provided data. The negative obligated amount should be reviewed in context as a deobligation or other downward adjustment rather than new funding.

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 = 'W31P4Q17C0006'
    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 -85,422,674.30 -85.42 million 66

Insight

Obligations for award W31P4Q17C0006 are entirely concentrated in PSC 1410, Guided Missiles, over the 5-year window. This PSC accounts for 66 actions and total obligated funding of -$85.42 million, indicating a fully concentrated obligation profile with no diversification across other product or service codes in the provided data. The negative obligated amount should be interpreted in context of deobligations, adjustments, or other downward funding activity within this PSC.

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 = 'W31P4Q17C0006'
    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 -26,077,904.06 -26.08 million 19
2022 -0.01 -0.01 17
2023 0.00 0.00 7
2024 -25,571,598.96 -25.57 million 15
2025 -33,773,171.27 -33.77 million 8

Insight

Obligations for PIID W31P4Q17C0006 are concentrated in 2021, 2024, and 2025, with those years accounting for the largest negative totals in the five-year window. Award volume is uneven, ranging from 7 awards in 2023 to 19 in 2021, while 2022 and 2023 show minimal or zero obligated value despite continued award activity. The pattern indicates intermittent funding movement rather than a steady year-over-year obligation profile.

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.