Award Number

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

Federal procurement summary for award M6785416C0006 under agency 9700, showing obligations and actions in the last full year.

This page summarizes award number M6785416C0006 for agency ID 9700 during the last full year. Total obligations were $757.40 million across 54 award actions, with an average action value of $14,025,851.48.

Generated at 03/20/2026

Analysis period: Last full year

Monetary values are based on the provided total obligated exact amount of $757,395,980.12 and its readable rounded form.

Agency ID
9700
PIID
M6785416C0006
Type
Award
Total Obligated
757.40 million
757,395,980.12
Actions
54
Average Action Value
14,025,851.48

Overview

For the last full year, award M6785416C0006 shows $757,395,980.12 in total obligated funds, presented here as $757.40 million. The award includes 54 actions, which yields an average action value of $14,025,851.48.

How to use this page

Use this page to review the award’s obligation volume and action count for the selected reporting period. It is suited for quick reference, filtering, and comparison with other awards under agency 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 = 'M6785416C0006'
    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 757,395,980.12 757.40 million 54

Insight

Over the 1-year window, obligations for PIID M6785416C0006 are concentrated entirely within DEPT OF THE NAVY, which accounts for $757.40 million across 54 awards. This indicates a single-agency distribution with no observed obligation spread to other agencies in the provided data. The award activity suggests sustained engagement with one primary funding source rather than a diversified agency portfolio.

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 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
BAE SYSTEMS LAND & ARMAMENTS L.P. 7B726 757,395,980.12 757.40 million 54

Insight

Over the 1-year window for award M6785416C0006, obligations are fully concentrated with BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 7B726), which received $757.40 million across 54 awards. This indicates a highly concentrated vendor profile for the award, with no other top vendors reflected in the provided data. The distribution suggests sustained award activity and funding flow to a single supplier rather than a diversified vendor base.

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 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
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 757,395,980.12 757.40 million 54

Insight

Within the 1-year window for award M6785416C0006, obligations are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This category accounts for $757.40 million across 54 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data. The award profile suggests sustained activity within a single industrial classification rather than a distributed spend base.

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 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
AC44 R&D- DEFENSE SYSTEM: TANK/AUTOMOTIVE (ENGINEERING DEVELOPMENT) 731,731,936.02 731.73 million 36
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 25,664,044.10 25.66 million 18

Insight

Obligations for PIID M6785416C0006 are heavily concentrated in PSC AC44, which accounts for $731.73 million across 36 awards in the 1-year window. PSC 2355 is a much smaller secondary category at $25.66 million across 18 awards, indicating a pronounced skew toward R&D-related defense system activity rather than procurement of wheeled combat vehicles. The distribution suggests the award portfolio is dominated by AC44 obligations, with 2355 representing a limited share of total funding.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 757,395,980.12 757.40 million 54

Insight

For PIID M6785416C0006 over the 1-year window, reported obligations are concentrated entirely in FY2025, totaling $757.40 million across 54 awards. This indicates that activity for this award is heavily weighted to a single fiscal year rather than distributed across multiple years in the observed period. The average obligation per award is substantial, suggesting a high-value concentration of funding within FY2025.

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.