Award Number

Award Number 9700 / W52P1J09C0012 Federal Contract Action Summary (Last 10 Years)

Federal procurement analysis page for award W52P1J09C0012 under agency ID 9700, covering obligations and action history over the last 10 years.

This page summarizes the award record for PIID W52P1J09C0012 across the last 10 years. The record shows 179 actions and total obligated dollars of 3.51 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are shown as reported for the selected analysis window; the exact total obligated amount is 3511598315.4 and the average action value is 19617867.68.

Agency ID
9700
PIID
W52P1J09C0012
Type
Award
Total Obligated
3.51 billion
3,511,598,315.40
Actions
179
Average Action Value
19,617,867.68

Overview

Award W52P1J09C0012 is associated with agency ID 9700 and shows sustained contract activity across the last 10 years. The award total obligated amount is 3,511,598,315.4, distributed across 179 actions, for an average action value of 19,617,867.68.

How to use this page

Use this page to review the award's obligation level and action count in a single record view. The figures support basic procurement analysis of activity volume, average action size, and total funded value within the selected period.

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 = 'W52P1J09C0012'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,511,598,315.40 3.51 billion 179

Insight

For PIID W52P1J09C0012 over the 10-year window, obligations are fully concentrated in a single top agency: the Department of the Army. The Army accounts for $3.51 billion across 179 awards, indicating a highly concentrated award profile with no diversification across other agencies in the provided data.

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 = 'W52P1J09C0012'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
BECHTEL NATIONAL, INC. 1S307 2,543,138,985.90 2.54 billion 127
BECHTEL NATIONAL, INC. 324H5 624,392,962.13 624.39 million 31
BECHTEL NATIONAL, INC. 344,066,367.37 344.07 million 21

Insight

Obligations under PIID W52P1J09C0012 are highly concentrated with BECHTEL NATIONAL, INC., which appears under three CAGE codes across the 10-year window. CAGE 1S307 accounts for the largest share at $2.54 billion across 127 awards, followed by CAGE 324H5 at $624.39 million across 31 awards and an additional $344.07 million across 21 awards with no CAGE code reported. This pattern indicates repeated funding to the same vendor entity, but distributed across multiple identifiers rather than a single CAGE.

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 = 'W52P1J09C0012'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 3,511,598,315.40 3.51 billion 179

Insight

Over the 10-year window, this award is fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, with $3.51 billion obligated across 179 awards. This indicates a highly concentrated obligation pattern within a single industry classification, with no diversification across other NAICS codes in the provided data. The award history reflects sustained procurement activity in hazardous waste treatment and disposal rather than broad distribution across multiple sectors.

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 = 'W52P1J09C0012'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
F108 ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION 3,511,598,315.40 3.51 billion 179

Insight

Over the 10-year window, award PIID W52P1J09C0012 is entirely concentrated in PSC F108, Environmental Systems Protection- Environmental Remediation. The award reflects 179 obligations totaling $3.51 billion, indicating sustained and exclusive funding within this product/service category. This concentration suggests the award’s obligation history is highly focused rather than distributed across multiple PSCs.

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 = 'W52P1J09C0012'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 305,418,600.36 305.42 million 17
2017 244,565,244.33 244.57 million 21
2018 400,286,894.56 400.29 million 16
2019 395,025,327.00 395.03 million 15
2020 412,376,000.00 412.38 million 22
2021 406,113,051.73 406.11 million 21
2022 356,431,555.32 356.43 million 22
2023 400,988,679.97 400.99 million 17
2024 422,679,499.87 422.68 million 17
2025 167,713,462.26 167.71 million 11

Insight

Obligations for PIID W52P1J09C0012 are concentrated in a relatively narrow band over 2016–2024, ranging from $244.57 million to $422.68 million annually, with award counts generally between 15 and 22. Funding rose from $244.57 million in 2017 to a high of $422.68 million in 2024, after several years clustered around $395 million to $412 million. The 2025 figure of $167.71 million with 11 awards is materially lower, but it is not directly comparable to prior full-year totals if the year is incomplete.

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