Award Number

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

Award number N0002416C2106 for agency ID 9700 shows one action in the last full year with total obligated value of -253.82 thousand.

This award record covers PIID N0002416C2106 under agency ID 9700 for the last full year. The single recorded action totals -253,822 in obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Values are shown for the last full year and reflect the provided total obligated exact amount of -253822.

Agency ID
9700
PIID
N0002416C2106
Type
Award
Total Obligated
-253.82 thousand
-253,822.00
Actions
1
Average Action Value
-253,822.00

Overview

The award page summarizes PIID N0002416C2106 for agency ID 9700 over the last full year. It records one action with an average action value of -253,822, matching the total obligated amount. The negative obligation value is presented as provided in the source data.

How to use this page

Use this page to review the award number, agency ID, and obligated totals for the selected analysis window. The single-action record makes the award-level summary straightforward for quick lookup and comparison.

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 = 'N0002416C2106'
    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
1700 DEPT OF THE NAVY -253,822.00 -253.82 thousand 1

Insight

Within the 1-year window for award N0002416C2106, obligations are concentrated entirely with DEPT OF THE NAVY (agency ID 1700), which accounts for the only recorded award transaction in this section. The single award is associated with negative obligations totaling -253.82 thousand, indicating a net de-obligation rather than new funding. This suggests all reported activity is attributable to one agency with no distribution across additional agencies.

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 = 'N0002416C2106'
        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
BECHTEL PLANT MACHINERY, INC. 4SVU7 -253,822.00 -253.82 thousand 1

Insight

BECHTEL PLANT MACHINERY, INC. is the only vendor reflected in this 1-year top vendors view for PIID N0002416C2106, indicating complete obligation concentration with no visible distribution across other vendors in the provided data. The single reported award is associated with a net obligation of -253.82 thousand across one action, suggesting a downward adjustment rather than positive funding accumulation.

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 = 'N0002416C2106'
    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
332410 POWER BOILER AND HEAT EXCHANGER MANUFACTURING -253,822.00 -253.82 thousand 1

Insight

Over the past 1 year, obligations for award N0002416C2106 under agency 9700 are concentrated in a single NAICS code: 332410, Power Boiler and Heat Exchanger Manufacturing. This NAICS accounts for one award action and a net obligated amount of -253.82 thousand, indicating a downward adjustment or deobligation in this line of business. With only one NAICS represented, there is no observable distribution across industries for this 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 = 'N0002416C2106'
    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
4470 NUCLEAR REACTORS -253,822.00 -253.82 thousand 1

Insight

All obligated dollars in the 1-year window are concentrated in PSC 4470, Nuclear Reactors, with one award totaling -$253.82 thousand. The single-obligation structure indicates no PSC-level distribution across other product or service categories for this award in the period reviewed. The negative obligated amount should be interpreted as a deobligation or downward funding adjustment tied to that PSC.

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 = 'N0002416C2106'
    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 -253,822.00 -253.82 thousand 1

Insight

Within the 1-year window, obligations for PIID N0002416C2106 are concentrated entirely in FY 2025, with one award action totaling -$253.82 thousand. The single-year, single-award pattern indicates no observed spread across multiple fiscal years in this period. The negative obligated amount suggests a net deobligation in FY 2025.

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.