Award Number

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

Federal procurement award page for award number W31P4Q17C0006 under agency 9700, summarizing last full year obligation activity and action history.

This page presents award-level procurement information for PIID W31P4Q17C0006 during the last full year. The award shows 8 actions and a total obligated amount of -$33.77 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the analysis window provided and reflect an exact obligated amount of -33773171.27 with an average action value of -4221646.41.

Agency ID
9700
PIID
W31P4Q17C0006
Type
Award
Total Obligated
-33.77 million
-33,773,171.27
Actions
8
Average Action Value
-4,221,646.41

Overview

The award record for W31P4Q17C0006 shows activity across 8 award actions in the last full year. Total obligated dollars are negative in the source data, with a readable value of -$33.77 million and an exact total of -33773171.27.

How to use this page

Use this page to review award-level obligation trends, action count, and average action value for the selected period. The average action value is -$4.22 million, which provides a compact view of how obligations were distributed across the recorded actions.

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 1 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 -33,773,171.27 -33.77 million 8

Insight

For this award over the 1-year window, obligations are concentrated in a single top agency: the Department of the Army, which accounts for -$33.77 million across 8 awards. This indicates all observed top-agency activity is attributable to one agency, with no distribution across additional agencies in the provided rows. The negative obligated amount suggests net deobligation or downward adjustment in this period.

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 1 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 -33,773,171.27 -33.77 million 8

Insight

Obligations under PIID W31P4Q17C0006 are highly concentrated in a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059), which accounts for the full reported activity in this 1-year window. Across 8 awards, the vendor shows net obligations of -$33.77 million, indicating an overall downward adjustment or deobligation pattern rather than positive funding growth. This concentration suggests the award’s recent funding movement is driven entirely by actions with one contractor.

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 1 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 -33,773,171.27 -33.77 million 8

Insight

Obligations for PIID W31P4Q17C0006 in the last year are fully concentrated in NAICS 336419, Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing. This single NAICS accounts for the entire reported obligation total of -$33.77 million across 8 awards, indicating no observable diversification across NAICS codes in this window. The negative obligated amount suggests net deobligations or downward adjustments rather than new funding growth.

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 1 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 -33,773,171.27 -33.77 million 8

Insight

Obligations for this award are fully concentrated in PSC 1410, Guided Missiles, with -$33.77 million across 8 awards in the 1-year window. This indicates a narrow product mix and suggests the award activity is centered on a single PSC category rather than being distributed across multiple classifications. The negative obligated amount should be interpreted in the context of the underlying FPDS record history.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -33,773,171.27 -33.77 million 8

Insight

Over the past 1 year, this award recorded -$33.77 million in total obligated dollars across 8 actions in FY 2025. Obligation activity is highly concentrated in this single year and average obligated value is approximately -$4.22 million per action, indicating a limited number of adjustments drove the annual total.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.