Award Number

Award Number 8900 / DEAC0608RL14788 Federal Contract Action Summary (Last Year)

Analyst summary for award number DEAC0608RL14788 showing last full year obligation activity for agency 8900.

This page presents the procurement record for award number DEAC0608RL14788 under agency ID 8900. In the last full year, the award recorded one action with total obligated value of -$6.63 million.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may be shown differently depending on rounding conventions.

Agency ID
8900
PIID
DEAC0608RL14788
Type
Award
Total Obligated
-6.63 million
-6,630,549.35
Actions
1
Average Action Value
-6,630,549.35

Overview

Award number DEAC0608RL14788 recorded a single action in the last full year. The exact total obligated amount was -6630549.35, with an average action value equal to the full award total because only one action occurred. The negative obligated value indicates a net deobligation or downward adjustment in the period, based on the supplied data.

How to use this page

Use this page to review the award-level obligation record for DEAC0608RL14788 and compare it with other awards in agency 8900. The values here are limited to the provided last full year window and summarize the award at the action level rather than by broader contract family.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0608RL14788'
    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
8900 ENERGY, DEPARTMENT OF -6,630,549.35 -6.63 million 1

Insight

Within the 1-year window for PIID DEAC0608RL14788, obligations are entirely concentrated in a single top agency: the Department of Energy (agency 8900). That agency accounts for 1 award with total obligated amounts of -$6.63 million, indicating a single-agency, single-award pattern with negative net obligation activity.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0608RL14788'
        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
CH2M HILL PLATEAU REMEDIATION COMPANY 4UD64 -6,630,549.35 -6.63 million 1

Insight

In the 1-year window for award DEAC0608RL14788, all reported obligations are concentrated in a single vendor, CH2M HILL PLATEAU REMEDIATION COMPANY (CAGE 4UD64). This vendor accounts for one recorded award and -$6.63 million in total obligated value, indicating complete vendor concentration within the provided rows. The negative obligated amount suggests a deobligation or downward adjustment rather than net new funding.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0608RL14788'
    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
562910 REMEDIATION SERVICES -6,630,549.35 -6.63 million 1

Insight

Obligations in the 1-year window are fully concentrated in NAICS 562910, Remediation Services, with one award accounting for all reported activity. The single obligation is a negative amount of $6.63 million, indicating net deobligation or downward adjustment in this period. No diversification across additional NAICS codes is evident for this award in the reported window.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0608RL14788'
    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
Z294 MAINT-REP-ALT/WASTE TRMT-STORE FAC -6,630,549.35 -6.63 million 1

Insight

Over the past year, obligations under PIID DEAC0608RL14788 are fully concentrated in PSC Z294, MAINT-REP-ALT/WASTE TRMT-STORE FAC, with a single award action accounting for -$6.63 million. This indicates a highly concentrated obligation pattern with no diversification across PSC categories in the provided period. The negative obligated amount should be treated as a de-obligation or downward adjustment rather than new funding.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC0608RL14788'
    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 -6,630,549.35 -6.63 million 1

Insight

For the 1-year window, this award shows all reported obligation activity in a single year, with one award action in FY 2025. The total obligated amount is a negative $6.63 million, indicating a downward adjustment or deobligation rather than a new positive obligation. Because activity is concentrated in one year and one award count, there is no multi-year trend or distribution pattern to assess.

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.