This award page summarizes procurement activity for award number N0002424C2115 under Agency ID 9700 during the last 5 years. The record reflects 7 actions and 2,032,588,758 in total obligated dollars.
Award Number
Award Number 9700 / N0002424C2115 Federal Contract Action Summary (Last 5 Years)
Award number N0002424C2115 for Agency ID 9700 shows 7 recorded actions in the last 5 years and 2.03 billion in total obligated value.
Total obligated value is shown as 2.03 billion, with an exact amount of 2,032,588,758 and an average action value of 290,369,822.57.
Overview
The award record for N0002424C2115 shows 7 actions in the last 5 years, with total obligated value of 2,032,588,758. The average action value across those actions is 290,369,822.57, indicating a small number of high-value actions over the analysis window.
How to use this page
Use this page to review the award number's obligation profile, action count, and average action value over the last 5 years. The figures provide a concise summary for FPDS-style analysis of procurement activity tied to Agency ID 9700.
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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
For PIID N0002424C2115 over the 5-year window, obligations are fully concentrated in a single agency entry: the Department of the Navy. It accounts for $2.03 billion across 7 awards, indicating all recorded obligation activity in this view is Navy-related. This concentration suggests a highly focused funding pattern with no distribution 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 = 'N0002424C2115'
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 PLANT MACHINERY, INC. | 4SVU7 | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
Over the 5-year window, obligations for PIID N0002424C2115 are concentrated entirely with BECHTEL PLANT MACHINERY, INC. (CAGE 4SVU7), which accounts for all reported obligated value in this top-vendor view. The vendor received 7 awards totaling $2.03 billion, indicating a highly concentrated award distribution with no diversification across other vendors in the provided rows.
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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 332410 | POWER BOILER AND HEAT EXCHANGER MANUFACTURING | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
Obligations under PIID N0002424C2115 are fully concentrated in NAICS 332410, Power Boiler and Heat Exchanger Manufacturing, with $2.03 billion obligated across 7 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The relatively small award count alongside the full obligation total suggests repeated funding within a single industry classification.
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 = 'N0002424C2115'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 2,032,588,758.00 | 2.03 billion | 7 |
Insight
Over the 5-year window, obligations for PIID N0002424C2115 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. The award reflects 7 obligations totaling $2.03 billion, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. This concentration suggests the contract’s obligated value is driven by a single product/service category.
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 = 'N0002424C2115'
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 |
|---|---|---|---|
| 2023 | 459,599,992.00 | 459.60 million | 1 |
| 2024 | 1,681,979,584.00 | 1.68 billion | 5 |
| 2025 | -108,990,818.00 | -108.99 million | 1 |
Insight
Obligations under PIID N0002424C2115 are concentrated in 2024, which accounts for 1.68 billion across 5 awards, compared with 459.60 million in 2023 across 1 award. The 2025 row shows a net deobligation of 108.99 million across 1 award, reversing part of the prior-year growth. Overall, the 5-year trend is highly uneven, with most activity occurring in 2024.
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.