Award Number

Award Number 9700 / M6785416C0006 Federal Contract Action Summary (Last 10 Years)

FPDS award page for award number M6785416C0006 under agency ID 9700, summarizing 10 years of obligations and action activity.

This page presents procurement activity for award number M6785416C0006 across the last 10 years. The record shows 663 award actions and total obligations of 3.47 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals shown on this page are based on the provided analysis window and may differ from other views if the date range changes.

Agency ID
9700
PIID
M6785416C0006
Type
Award
Total Obligated
3.47 billion
3,468,943,360.19
Actions
663
Average Action Value
5,232,192.10

Overview

Award number M6785416C0006 is associated with agency ID 9700 and records 3,468,943,360.19 in total obligated amount over the last 10 years. The award includes 663 actions, with an average action value of 5,232,192.1.

How to use this page

Use this page to review the scale and action history tied to award number M6785416C0006 within the selected 10-year window. The obligation total, action count, and average action value provide a compact summary for procurement analysis 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 = 'M6785416C0006'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,468,943,360.19 3.47 billion 660
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Obligations are heavily concentrated in DEPT OF THE NAVY, which accounts for $3.47 billion across 660 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally in the record, with 3 awards and no obligated dollars reported. This distribution indicates that the award activity under PIID M6785416C0006 is overwhelmingly Navy-driven over the 10-year window.

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 = 'M6785416C0006'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
BAE SYSTEMS LAND & ARMAMENTS L.P. 7B726 3,388,264,138.46 3.39 billion 603
BAE SYSTEMS LAND & ARMAMENTS L.P. 80,679,221.73 80.68 million 60

Insight

Award activity is highly concentrated in BAE SYSTEMS LAND & ARMAMENTS L.P., which appears in both rows and accounts for the vast majority of obligations across the 10-year window. The vendor’s CAGE-coded entry totals $3.39 billion across 603 awards, while a second entry under the same name but without a CAGE code adds another $80.68 million across 60 awards. This indicates strong vendor concentration with limited distribution beyond a single supplier identity, though the duplicate name entries suggest possible record fragmentation.

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 = 'M6785416C0006'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 3,468,943,360.19 3.47 billion 663

Insight

Obligations for PIID M6785416C0006 are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, over the 10-year window. This NAICS accounts for $3.47 billion across 663 awards, indicating sustained and highly focused spend within a single industrial category. The distribution suggests no diversification across other NAICS codes in the provided results.

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 = 'M6785416C0006'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
AC44 R&D- DEFENSE SYSTEM: TANK/AUTOMOTIVE (ENGINEERING DEVELOPMENT) 3,060,920,315.52 3.06 billion 441
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 408,023,044.67 408.02 million 222

Insight

For award M6785416C0006 over the 10-year window, obligations are highly concentrated in PSC AC44, which accounts for 3.06 billion across 441 awards. PSC 2355 is a secondary category at 408.02 million across 222 awards, indicating a materially smaller but still meaningful share of activity. Together, these two PSCs reflect a procurement pattern centered on tank/automotive R&D and wheeled combat vehicle acquisitions.

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 = 'M6785416C0006'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 74,489,221.73 74.49 million 54
2017 19,585,000.00 19.59 million 39
2018 354,219,001.20 354.22 million 42
2019 194,558,355.58 194.56 million 78
2020 341,041,590.37 341.04 million 106
2021 430,993,036.92 430.99 million 96
2022 495,498,124.79 495.50 million 66
2023 520,593,759.58 520.59 million 69
2024 280,569,289.90 280.57 million 59
2025 757,395,980.12 757.40 million 54

Insight

Obligations under PIID M6785416C0006 show a generally upward trend over the 10-year window, with annual totals increasing from $74.49 million in 2016 to $757.40 million in 2025. Award counts fluctuate rather than rise steadily, ranging from 39 in 2017 to a high of 106 in 2020, indicating that obligation growth is not driven solely by volume. The profile is concentrated in the later years, particularly 2021 through 2025, which account for the largest annual obligation levels, including a temporary decline in 2024 followed by a sharp increase in 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.