Award Number

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

Procurement activity for award number W52P1J09C0012 under agency ID 9700 over the last 5 years shows 88 actions and $1.75 billion in total obligations.

This page summarizes federal award activity for PIID W52P1J09C0012 within agency ID 9700 during the last 5 years. The award records 88 actions with total obligated dollars of $1,753,926,249.15.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures reflect the provided analysis window and may round differently between readable and exact values.

Agency ID
9700
PIID
W52P1J09C0012
Type
Award
Total Obligated
1.75 billion
1,753,926,249.15
Actions
88
Average Action Value
19,930,980.10

Overview

The award record for W52P1J09C0012 shows sustained procurement activity across 88 actions in the last 5 years. Total obligated dollars reached $1,753,926,249.15, with an average action value of $19,930,980.10.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for W52P1J09C0012. It is useful for comparing procurement volume and contract activity within agency ID 9700 over 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 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,753,926,249.15 1.75 billion 88

Insight

Over the 5-year window for PIID W52P1J09C0012, obligations are fully concentrated in a single top agency: the Department of the Army. This agency accounts for $1.75 billion across 88 awards, indicating both high dollar concentration and recurring award activity under the contract. No other agency appears in the provided rows, so the observable distribution is entirely centralized.

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 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
BECHTEL NATIONAL, INC. 1S307 1,129,533,287.02 1.13 billion 57
BECHTEL NATIONAL, INC. 324H5 624,392,962.13 624.39 million 31

Insight

Award activity for PIID W52P1J09C0012 is highly concentrated in BECHTEL NATIONAL, INC., which appears under two CAGE codes. The larger share is associated with CAGE 1S307, at $1.13 billion across 57 awards, followed by CAGE 324H5 at $624.39 million across 31 awards. Combined, these two entries account for all listed obligated amounts in this section, indicating a strong vendor concentration within the 5-year window.

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 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
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 1,753,926,249.15 1.75 billion 88

Insight

Over the 5-year window, this award is entirely concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, with 1.75 billion obligated across 88 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of actions suggests repeated activity within a single hazardous waste services category, rather than a broad mix of acquisition types.

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 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
F108 ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION 1,753,926,249.15 1.75 billion 88

Insight

Over the 5-year window, PSC F108 (Environmental Systems Protection - Environmental Remediation) accounts for all reported obligations in this award record, totaling $1.75 billion across 88 awards. This indicates a highly concentrated procurement profile centered on environmental remediation services. The volume of awards suggests repeated procurement activity within the same PSC rather than diversification across multiple product or service categories.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 remained concentrated at a high level from 2021 through 2024, ranging from $356.43 million to $422.68 million annually, with award counts between 17 and 22. After a dip in 2022, obligated dollars recovered in 2023 and increased again in 2024, indicating relatively stable annual funding across the period. In 2025, obligations declined to $167.71 million with 11 awards, reflecting a partial-year or reduced-obligation pattern relative to prior years.

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.