Award Number

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

FPDS award page for award number W31P4Q23F0006 under agency ID 9700, covering obligations and actions over the last 5 years.

This page summarizes federal procurement activity for award number W31P4Q23F0006 within agency ID 9700 over the last 5 years. The award records 39 actions and total obligated amounts of 1.61 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals shown here reflect the provided analysis window and may differ from other reporting periods or filtered views.

Agency ID
9700
PIID
W31P4Q23F0006
Type
Award
Total Obligated
1.61 billion
1,610,114,676.70
Actions
39
Average Action Value
41,284,991.71

Overview

Award number W31P4Q23F0006 is associated with agency ID 9700 and shows 39 recorded actions in the last 5 years. Total obligated amount is 1,610,114,676.7 dollars, with an average action value of 41,284,991.71 dollars. This page provides a compact procurement summary for review and comparison.

How to use this page

Use this page to review the scale and activity level of the award across the selected 5-year window. The obligated total, action count, and average action value provide a quick basis for tracking procurement volume and change over time.

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 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,610,114,676.70 1.61 billion 39

Insight

Over the past 5 years, obligations for PIID W31P4Q23F0006 are fully concentrated in a single top agency: the Department of the Army. The award reflects 39 obligations totaling $1.61 billion, indicating a highly concentrated distribution with no evidence of dispersion across other agencies in this section.

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 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 1,610,114,676.70 1.61 billion 39

Insight

Within the 5-year window, obligations for PIID W31P4Q23F0006 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059), accounting for $1.61 billion across 39 awards. This indicates a highly concentrated award profile with no additional vendors represented in the provided rows. The distribution suggests sustained reliance on one contractor for this award record.

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 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,610,114,676.70 1.61 billion 39

Insight

Across the 5-year window, obligations under award W31P4Q23F0006 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This single NAICS accounts for $1.61 billion across 39 awards, indicating a highly focused procurement profile with no evidence of diversification in the provided data.

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 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,610,114,676.70 1.61 billion 39

Insight

Obligations for PIID W31P4Q23F0006 are fully concentrated in PSC 1410, Guided Missiles, with 1.61 billion obligated across 39 awards over the 5-year window. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The volume of awards suggests repeated actions within the same product/service category rather than a broad mix of requirements.

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 5 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 uneven across the 5-year window, with a peak in 2023 at $811.56 million across 15 awards, followed by a decline to $325.36 million in 2024 across 4 awards. FY 2022 reflects a substantial but lower level of activity at $476.81 million across 2 awards, indicating a smaller number of higher-value actions. FY 2025 shows 18 awards but net obligations of -$3.62 million, suggesting deobligations or other downward adjustments that offset new funding.

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.