Award Number

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

Federal procurement summary for award W31P4Q19C0011 under Agency ID 9700, covering obligations and actions in the last 5 years.

This award page summarizes procurement activity for PIID W31P4Q19C0011 over the last 5 years. The award shows 174 actions and total obligated funding of 246.24 million dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may differ from other FPDS views due to reporting timing or data updates.

Agency ID
9700
PIID
W31P4Q19C0011
Type
Award
Total Obligated
246.24 million
246,235,028.66
Actions
174
Average Action Value
1,415,143.84

Overview

Award W31P4Q19C0011 under Agency ID 9700 recorded 174 award actions in the last 5 years. Total obligated funding was 246,235,028.66 dollars, with an average action value of 1,415,143.84 dollars.

How to use this page

Use this page to review award-level procurement activity, including cumulative obligations and action volume for PIID W31P4Q19C0011. The figures support quick comparison with other awards, agencies, or time windows in FPDS analysis.

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 = 'W31P4Q19C0011'
    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 246,235,028.66 246.24 million 174

Insight

Within the 5-year window for award PIID W31P4Q19C0011, obligations are concentrated entirely in one agency: the Department of the Army. The Army accounts for $246.24 million across 174 awards, indicating a highly concentrated obligation pattern with no evidence of agency-level 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 = 'W31P4Q19C0011'
        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 246,235,028.66 246.24 million 174

Insight

Over the past 5 years, obligations for PIID W31P4Q19C0011 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059). This vendor received 174 awards totaling $246.24 million, indicating a highly concentrated obligation pattern with no other vendors represented 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 = 'W31P4Q19C0011'
    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 246,235,028.66 246.24 million 174

Insight

All reported obligations for PIID W31P4Q19C0011 within the 5-year window are concentrated in NAICS 336419, Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing. This single NAICS accounts for $246.24 million across 174 awards, indicating a fully concentrated procurement profile for the award in the period reviewed.

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 = 'W31P4Q19C0011'
    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 246,235,028.66 246.24 million 174

Insight

Over the 5-year window for award W31P4Q19C0011, obligations are fully concentrated in PSC 1410, Guided Missiles. The award reflects 174 actions totaling $246.24 million, indicating a sustained and highly focused procurement profile rather than a diversified PSC distribution. This concentration suggests the award is primarily associated with guided missile 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 = 'W31P4Q19C0011'
    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 105,012,716.25 105.01 million 46
2022 141,222,312.41 141.22 million 47
2023 0.00 0.00 31
2024 0.00 0.00 31
2025 0.00 0.00 19

Insight

Obligations for PIID W31P4Q19C0011 were concentrated in 2021 and 2022, totaling $246.23 million across 93 awards, with the peak in 2022 at $141.22 million. Award counts remained relatively stable in 2021 and 2022, but obligated amounts dropped to zero in 2023 through 2025 despite continued award activity. This indicates a sharp post-2022 funding shift or a change in obligation timing within the five-year window.

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.