Award Number

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

Award number N0001912C2001 for agency ID 9700 shows 7 actions in the last full year with no recorded obligations.

This page summarizes federal award activity for PIID N0001912C2001 under agency ID 9700 during the last full year. The record shows 7 award actions and a total obligated amount of 0.00.

Generated at 03/20/2026

Analysis period: Last full year

All monetary figures on this page reflect the reported total obligated amount of 0 and an average action value of 0.

Agency ID
9700
PIID
N0001912C2001
Type
Award
Total Obligated
0.00
0.00
Actions
7
Average Action Value
0.00

Overview

The award record for N0001912C2001 is associated with agency ID 9700 and contains 7 reported actions in the last full year. Reported financial activity is limited to a total obligated amount of 0.00, with an average action value of 0.

How to use this page

Use this page to review the award-level activity count and the reported obligation totals for the selected analysis window. It is most useful for quick verification of whether an award has recorded actions without corresponding obligated dollars in 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 = 'N0001912C2001'
    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
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 7

Insight

Within the 1-year window for award PIID N0001912C2001, all reported activity is concentrated at Defense Contract Management Agency (DCMA). DCMA accounts for 7 awards with $0.00 total obligated, indicating a non-obligated award distribution rather than funded obligation activity. This pattern suggests administrative or follow-on award records without recorded obligation value in the queried period.

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 = 'N0001912C2001'
        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
BELL BOEING JOINT PROJECT OFFICE 3B1R2 0.00 0.00 7

Insight

Award activity for PIID N0001912C2001 is fully concentrated with a single vendor, BELL BOEING JOINT PROJECT OFFICE (CAGE 3B1R2), accounting for all 7 awards in the 1-year window. No obligated dollars are reported, indicating the activity is distributed across multiple awards without recorded obligation value in this period. This pattern suggests high vendor concentration at the award-count level, but no measurable funding concentration.

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 = 'N0001912C2001'
    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
336411 AIRCRAFT MANUFACTURING 0.00 0.00 7

Insight

All 7 awards in the 1-year window are associated with NAICS 336411, Aircraft Manufacturing, indicating complete concentration in a single industry code. No obligated dollars are reported for this NAICS group, so the activity appears to consist of zero-dollar awards rather than funded obligations. This pattern suggests the award record is narrowly concentrated and does not reflect a distributed set of NAICS categories.

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 = 'N0001912C2001'
    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
1510 AIRCRAFT, FIXED WING 0.00 0.00 7

Insight

Across the 1-year window for award PIID N0001912C2001, obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with no obligated dollars recorded in the provided row. The seven awards in this PSC indicate activity is entirely focused in a single product category, with no distribution across other PSCs in the supplied data. This pattern suggests a narrow procurement scope, but the absence of obligated dollars limits assessment of financial trend significance.

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 = 'N0001912C2001'
    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 7

Insight

For the 1-year window, obligations under PIID N0001912C2001 are concentrated entirely in FY 2025, with total obligated amount at 0.00 across 7 awards. This indicates activity was recorded during the period, but no obligations were posted in the available annual trend data. The distribution is therefore singular, with no year-over-year variation observable from the provided row.

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.