Award Number

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

This award record for PIID N0002417C2105 under agency ID 9700 shows five actions during the last full year with no obligated dollars reported.

The page summarizes award activity for PIID N0002417C2105 across the last full year. Reported total obligations are 0.00 across 5 actions, with an average action value of 0.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the provided analysis window and may change if underlying procurement records are updated.

Agency ID
9700
PIID
N0002417C2105
Type
Award
Total Obligated
0.00
0.00
Actions
5
Average Action Value
0.00

Overview

This award record is tied to agency ID 9700 and identifies PIID N0002417C2105 as the procurement reference. In the last full year, the record shows 5 award actions and total obligated value of 0.00.

How to use this page

Use this page to review the award-level summary for PIID N0002417C2105 and to track action count within the selected period. It is also useful for quickly checking that no obligated amount is reported for the last full year.

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 = 'N0002417C2105'
    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 0.00 0.00 5

Insight

Within the 1-year window, obligations for PIID N0002417C2105 are fully concentrated under DEPT OF THE NAVY (agency_id 1700). The award count indicates 5 records, but reported total obligated is 0.00, suggesting activity was recorded without obligated dollars in this period. There is no observable 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 = 'N0002417C2105'
        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
HUNTINGTON INGALLS INCORPORATED 43689 0.00 0.00 5

Insight

All reported awards in the 1-year window are concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 43689), which accounts for all 5 awards under PIID N0002417C2105. The obligated amount reported for this vendor is $0.00, indicating activity is present in award count but not in recorded obligations for the period. This pattern reflects a highly concentrated distribution with no evidence of vendor diversification in the provided data.

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 = 'N0002417C2105'
    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
336611 SHIP BUILDING AND REPAIRING 0.00 0.00 5

Insight

All 5 awards in the 1-year window are classified under NAICS 336611, Ship Building and Repairing, indicating complete NAICS concentration for PIID N0002417C2105 within this period. No obligated dollars are recorded for this NAICS grouping, so the distribution reflects award count activity rather than funded obligation volume. This suggests a narrow industrial classification with no observable NAICS diversification in the provided data.

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 = 'N0002417C2105'
    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
1905 COMBAT SHIPS AND LANDING VESSELS 0.00 0.00 5

Insight

Over the past 1 year, all recorded obligations for PIID N0002417C2105 under Agency 9700 in the top PSC category were concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for 5 awards with $0.00 total obligated, indicating award activity in this period but no recorded obligations in the provided data. The distribution is fully concentrated in a single PSC, with no other PSCs reflected in the row set.

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 = 'N0002417C2105'
    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 0.00 0.00 5

Insight

For PIID N0002417C2105 over the 1-year window, all recorded obligation is concentrated in a single year: FY 2025. The award has 5 actions in FY 2025, but total obligated dollars are 0.00, indicating activity with no recorded obligation in the provided data. This pattern suggests administrative or non-obligating activity rather than funded obligation within the period.

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.