This page summarizes award number DAAA0998E0006 for agency ID 9700 during the last 5 years. The award shows 152 actions and total obligated amounts of $740.46 million.
Award Number
Award Number 9700 / DAAA0998E0006 Federal Contract Action Summary (Last 5 Years)
Federal procurement profile for award number DAAA0998E0006 under agency ID 9700, summarizing activity over the last 5 years.
Total obligated is $740,456,196.32, with an average action value of $4,871,422.34 across 152 actions.
Overview
Award number DAAA0998E0006 is associated with agency ID 9700 and shows procurement activity over the last 5 years. The record includes 152 actions and $740,456,196.32 in total obligated funds, with an average action value of $4,871,422.34.
How to use this page
Use this page to review the scale and cadence of obligation activity tied to award DAAA0998E0006. The figures support quick comparison of total obligations, action count, and average action value within the selected 5-year 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 = 'DAAA0998E0006'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 740,456,196.32 | 740.46 million | 152 |
Insight
Over the 5-year window for PIID DAAA0998E0006, all observed obligation activity is concentrated in a single top agency: the Department of the Army. The Department of the Army accounts for $740.46 million across 152 awards, indicating a fully concentrated award distribution within the provided top-agency data. This pattern suggests the award’s obligated activity is entirely centered on one agency rather than spread across multiple agencies.
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 = 'DAAA0998E0006'
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 |
|---|---|---|---|---|
| ORDNANCE SYSTEMS INCORPORATED | 1LF48 | 740,456,196.32 | 740.46 million | 152 |
Insight
Over the past 5 years, ORDANCE SYSTEMS INCORPORATED (CAGE 1LF48) accounts for $740.46 million in obligated value across 152 awards under PIID DAAA0998E0006. This indicates a highly concentrated vendor profile, with all reported obligation in the section attributed to a single supplier. The distribution suggests sustained reliance on this vendor over the period rather than a broad award 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 = 'DAAA0998E0006'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 740,456,196.32 | 740.46 million | 152 |
Insight
For this award over the 5-year window, obligations are fully concentrated in NAICS 561210, Facilities Support Services, with $740.46 million across 152 awards. This indicates a highly focused procurement profile, with no diversification across additional NAICS codes in the provided results. The volume of awards suggests repeated use of this service category rather than reliance on a single large obligation.
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 = 'DAAA0998E0006'
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 |
|---|---|---|---|---|
| Y151 | CONSTRUCT/AMMUNITION FACILITIES | 740,456,196.32 | 740.46 million | 152 |
Insight
Over the 5-year window, obligations for award DAAA0998E0006 are fully concentrated in PSC Y151, Construct/Ammonition Facilities, with $740.46 million across 152 awards. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The award history suggests repeated obligation activity within a single facilities-related category rather than a broad mix of product or service classifications.
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 = 'DAAA0998E0006'
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 | 370,388,185.65 | 370.39 million | 32 |
| 2022 | 215,715,176.00 | 215.72 million | 33 |
| 2023 | 131,777,907.26 | 131.78 million | 50 |
| 2024 | 20,172,850.00 | 20.17 million | 21 |
| 2025 | 2,402,077.41 | 2.40 million | 16 |
Insight
Obligations for PIID DAAA0998E0006 declined sharply over the 5-year window, falling from $370.39 million in 2021 to $2.40 million in 2025. Award activity remained relatively steady in 2021-2022, increased to a peak of 50 awards in 2023, then dropped to 21 in 2024 and 16 in 2025. The pattern indicates a strong concentration of obligations in the earlier years, with materially reduced funding and award volume in the most recent periods.
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.