This page summarizes obligation activity for award FA880710C0001 over the last 10 years. The record shows 359 award actions and total obligations of $2.92 billion.
Award Number
Award Number 9700 / FA880710C0001 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number FA880710C0001 under agency ID 9700, covering actions in the last 10 years.
Dollar figures are shown as reported, with exact total obligations of 2919351410.89 and an average action value of 8131898.08.
Overview
The award record for FA880710C0001 covers activity within the last 10 years and includes 359 reported actions. Total obligations equal $2,919,351,410.89, with an average action value of $8,131,898.08.
How to use this page
Use this page to review overall obligation volume and action frequency for the award. The figures provide a concise starting point for comparing this record with other awards or reviewing activity trends within the same time window.
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 = 'FA880710C0001'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 2,924,046,253.50 | 2.92 billion | 354 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -4,694,842.61 | -4.69 million | 5 |
Insight
Obligations under PIID FA880710C0001 are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for $2.92 billion across 354 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) is a minor offsetting source at -$4.69 million across 5 awards, indicating limited volume and a small net downward adjustment relative to the Air Force total. Overall, the award activity is overwhelmingly concentrated with a single agency, with DCMA representing only a marginal negative contribution.
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 = 'FA880710C0001'
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 |
|---|---|---|---|---|
| RAYTHEON COMPANY | 5R497 | 2,516,871,464.89 | 2.52 billion | 312 |
| RAYTHEON COMPANY | 402,479,946.00 | 402.48 million | 47 |
Insight
Obligations under PIID FA880710C0001 are highly concentrated in RAYTHEON COMPANY, which accounts for $2.52 billion across 312 awards. An additional $402.48 million is associated with the same vendor name without a CAGE code, across 47 awards, indicating a material but separate-coded portion of activity. Combined, these rows reflect a strong vendor concentration over the 10-year window.
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 = 'FA880710C0001'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 2,919,351,410.89 | 2.92 billion | 359 |
Insight
Award FA880710C0001 is fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). Over the 10-year window, this code accounts for $2.92 billion across 359 awards, indicating sustained obligation activity within a single primary NAICS category. No additional NAICS distribution is present in the provided rows, so the award appears highly concentrated rather than diversified.
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 = 'FA880710C0001'
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 |
|---|---|---|---|---|
| AC27 | R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (COMMERCIALIZED) | 2,919,351,410.89 | 2.92 billion | 359 |
Insight
Obligations for this award are highly concentrated in PSC AC27, R&D - Defense System: Missile/Space Systems (Commercialized), which accounts for $2.92 billion across 359 actions over the 10-year window. This indicates sustained activity in a single product/service category rather than a broadly distributed obligation profile. The volume of actions suggests repeated funding within the same PSC, consistent with an ongoing technical or research-oriented procurement pattern.
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 = 'FA880710C0001'
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 | 339,979,946.00 | 339.98 million | 41 |
| 2017 | 413,708,518.00 | 413.71 million | 33 |
| 2018 | 505,785,083.00 | 505.79 million | 38 |
| 2019 | 246,807,373.00 | 246.81 million | 26 |
| 2020 | 396,869,761.44 | 396.87 million | 31 |
| 2021 | 219,711,693.55 | 219.71 million | 39 |
| 2022 | 189,306,837.50 | 189.31 million | 34 |
| 2023 | 178,155,528.25 | 178.16 million | 33 |
| 2024 | 229,013,062.44 | 229.01 million | 36 |
| 2025 | 200,013,607.71 | 200.01 million | 48 |
Insight
Obligations for PIID FA880710C0001 were highest in 2018 at $505.79 million, then generally declined over the remainder of the 10-year window, with a sharp drop after 2020 to a low of $178.16 million in 2023. Award counts were more dispersed, ranging from 26 to 48, and did not move in lockstep with dollars obligated. The pattern indicates a period of higher funding concentration in 2016–2020, followed by lower but steadier obligation levels in 2021–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.