Award Number

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

Award number W31P4Q24F0165 for agency 9700 shows 15 award actions in the last full year with $1.97 billion obligated.

This page summarizes federal procurement activity for award number W31P4Q24F0165 within agency ID 9700 over the last full year. Total obligations were $1,967,830,425.53 across 15 actions, for an average action value of $131,188,695.04.

Generated at 03/20/2026

Analysis period: Last full year

Dollar amounts are shown as reported, with the readable total rounded to $1.97 billion and the exact total listed as $1,967,830,425.53.

Agency ID
9700
PIID
W31P4Q24F0165
Type
Award
Total Obligated
1.97 billion
1,967,830,425.53
Actions
15
Average Action Value
131,188,695.04

Overview

The award record for W31P4Q24F0165 reflects procurement activity reported under agency ID 9700 during the last full year. Across 15 award actions, obligations totaled $1,967,830,425.53, with an average action value of $131,188,695.04.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for W31P4Q24F0165. The figures support quick comparison against other awards in agency 9700 or against the same award over different analysis windows.

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 = 'W31P4Q24F0165'
    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 1,967,830,425.53 1.97 billion 15

Insight

Within the 1-year window for PIID W31P4Q24F0165, obligation is fully concentrated in a single agency recipient: the DEPT OF THE ARMY. This agency accounts for $1.97 billion across 15 awards, indicating a highly concentrated award profile with no additional agency distribution in the provided rows.

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 = 'W31P4Q24F0165'
        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 1,967,830,425.53 1.97 billion 15

Insight

Over the 1-year window, obligations for PIID W31P4Q24F0165 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059). This vendor accounts for 15 awards totaling $1.97 billion, indicating a high degree of vendor concentration and no observable distribution across additional suppliers in the provided data.

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 = 'W31P4Q24F0165'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,967,830,425.53 1.97 billion 15

Insight

Obligations under PIID W31P4Q24F0165 in the 1-year window are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $1.97 billion across 15 awards, indicating a high concentration of activity in a single industrial base segment rather than a diversified mix of NAICS codes. The award count suggests repeated procurement within the same manufacturing area, with no other NAICS categories represented 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 = 'W31P4Q24F0165'
    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 1,967,830,425.53 1.97 billion 15

Insight

Within the 1-year window for award W31P4Q24F0165, PSC 1410 (Guided Missiles) accounts for all reported obligation in this section, totaling $1.97 billion across 15 awards. This indicates a highly concentrated PSC profile with no diversification across other product or service categories in the provided rows. The distribution suggests the award activity is focused exclusively on guided missile procurements or related obligations.

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 = 'W31P4Q24F0165'
    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 1,967,830,425.53 1.97 billion 15

Insight

For the 1-year window, award activity for PIID W31P4Q24F0165 is concentrated in FY 2025, with $1.97 billion obligated across 15 awards. This indicates a high-dollar, low-count distribution, with obligations heavily concentrated rather than spread across many transactions. No year-over-year trend can be assessed from the provided data because only one fiscal year is present.

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.