Award Number

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

Federal procurement profile for award number DAAA0998E0006 under agency ID 9700, showing obligation and action history over the last 10 years.

This award record covers 310 actions over the last 10 years. Total obligations equal 1.66 billion, with an average action value of 5,369,767.64.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are based on the provided analysis window and reported total obligated exact value of 1,664,627,968.53.

Agency ID
9700
PIID
DAAA0998E0006
Type
Award
Total Obligated
1.66 billion
1,664,627,968.53
Actions
310
Average Action Value
5,369,767.64

Overview

The award number DAAA0998E0006 is associated with agency ID 9700 and shows a 10-year obligation total of 1,664,627,968.53. The record includes 310 actions, which results in an average action value of 5,369,767.64.

How to use this page

This page can be used to review the award's obligation scale and action frequency over the selected analysis window. It provides a concise reference for comparing this award against other federal procurement records tied to agency ID 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 = 'DAAA0998E0006'
    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
2100 DEPT OF THE ARMY 1,664,627,968.53 1.66 billion 310

Insight

Over the 10-year window, obligations for PIID DAAA0998E0006 are concentrated entirely with the DEPT OF THE ARMY, which accounts for $1.66 billion across 310 awards. This indicates a highly concentrated award distribution with no other agencies represented in the provided rows. The pattern suggests the award is firmly tied to Army procurement activity rather than a dispersed, cross-agency procurement base.

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 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
ORDNANCE SYSTEMS INCORPORATED 1LF48 1,394,742,611.18 1.39 billion 273
ORDNANCE SYSTEMS INCORPORATED 269,885,357.35 269.89 million 37

Insight

ORDNANCE SYSTEMS INCORPORATED is the clear dominant vendor across the 10-year window for PIID DAAA0998E0006, with $1.39 billion across 273 awards under CAGE 1LF48. An additional $269.89 million is recorded to the same vendor name without a CAGE code across 37 awards, indicating a material but separate obligation stream. Combined, these rows show strong concentration of obligated dollars and award activity with a single vendor name.

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 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
561210 FACILITIES SUPPORT SERVICES 1,664,627,968.53 1.66 billion 310

Insight

Over the 10-year window, obligations for PIID DAAA0998E0006 are fully concentrated in NAICS 561210, Facilities Support Services. This NAICS accounts for $1.66 billion across 310 awards, indicating a highly concentrated procurement pattern with no diversification evident in the provided data.

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 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
Y151 CONSTRUCT/AMMUNITION FACILITIES 1,664,627,968.53 1.66 billion 310

Insight

Obligations for PIID DAAA0998E0006 are concentrated entirely in PSC Y151, Construct/Ammunition Facilities, over the 10-year window. This PSC accounts for $1.66 billion across 310 awards, indicating sustained activity in a single product/service category rather than a diversified PSC mix.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 253,077,465.35 253.08 million 34
2017 117,637,490.37 117.64 million 42
2018 271,715,772.40 271.72 million 24
2019 62,380,952.61 62.38 million 26
2020 219,360,091.48 219.36 million 32
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 over the 10-year window are unevenly distributed, with the highest annual funding in 2021 at $370.39 million and another high point in 2018 at $271.72 million. After 2021, obligated amounts declined materially, falling to $215.72 million in 2022, $131.78 million in 2023, $20.17 million in 2024, and $2.40 million in 2025. Award counts do not track obligated dollars consistently, ranging from 16 to 50 awards, which indicates that funding concentration is driven more by contract value than by award volume.

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.