This page summarizes federal procurement activity for award M6785416C0006 under agency 9700 during the last 5 years. The award shows 344 actions with total obligated amount of $2.49 billion and an average action value of $7,223,983.11.
Award Number
Award Number 9700 / M6785416C0006 Federal Contract Action Summary (Last 5 Years)
Award number M6785416C0006 for agency 9700 shows obligated activity over the last 5 years.
Amounts are based on the provided analysis window and may reflect rounded display values versus the exact obligated total of 2485050191.31.
Overview
The award record for M6785416C0006 covers 344 actions in the last 5 years. Total obligated funding is 2485050191.31, shown on the page as 2.49 billion, with an average action value of 7223983.11.
How to use this page
Use this page to review the award-level obligation history for M6785416C0006 and compare action counts, total dollars, and average action size. It is intended for procurement analysis within agency 9700 over the selected 5-year period.
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 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,485,050,191.31 | 2.49 billion | 342 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations for PIID M6785416C0006 are highly concentrated in the DEPT OF THE NAVY, which accounts for 2.49 billion across 342 awards over the 5-year window. The only other listed agency, the DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), has 2 awards but no obligated dollars. This indicates that the award activity is overwhelmingly Navy-driven, with minimal dollar distribution outside that agency.
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 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 |
|---|---|---|---|---|
| BAE SYSTEMS LAND & ARMAMENTS L.P. | 7B726 | 2,485,050,191.31 | 2.49 billion | 344 |
Insight
Over the 5-year window for award M6785416C0006 under Agency ID 9700, obligations are entirely concentrated with a single vendor. BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 7B726) received $2.49 billion across 344 awards, indicating sustained and highly concentrated vendor activity for this award record.
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 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 |
|---|---|---|---|---|
| 336992 | MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING | 2,485,050,191.31 | 2.49 billion | 344 |
Insight
Over the last 5 years, obligations for PIID M6785416C0006 under Agency 9700 are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This NAICS accounts for $2.49 billion across 344 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated activity within a single industrial base rather than broad category spread.
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 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 |
|---|---|---|---|---|
| AC44 | R&D- DEFENSE SYSTEM: TANK/AUTOMOTIVE (ENGINEERING DEVELOPMENT) | 2,194,363,213.23 | 2.19 billion | 228 |
| 2355 | COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED | 290,686,978.08 | 290.69 million | 116 |
Insight
Obligations under PIID M6785416C0006 are heavily concentrated in PSC AC44, which accounts for $2.19 billion across 228 awards and dominates the 5-year profile. PSC 2355 is a secondary category at $290.69 million across 116 awards, indicating a materially smaller but still recurring share of obligations. The mix suggests award activity is centered on R&D for tank/automotive systems, with a narrower flow into wheeled combat and tactical vehicles.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 for PIID M6785416C0006 were relatively stable from 2021 through 2023, increasing from $430.99 million to $520.59 million while award counts declined from 96 to 69. In 2024, obligated value fell sharply to $280.57 million with 59 awards, indicating a temporary contraction in annual spend. In 2025, obligations rebounded materially to $757.40 million despite the lowest award count in the period (54), suggesting greater concentration of obligated dollars in fewer awards.
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.