This page presents FPDS-style award data for PIID W9124G17C0104 within agency ID 9700. The analysis window covers the last 5 years and shows 129 award actions with total obligated dollars of $2,556,109,444.96.
Award Number
Award Number 9700 / W9124G17C0104 Federal Contract Action Summary (Last 5 Years)
Federal procurement analysis for award number W9124G17C0104 under agency ID 9700, summarizing obligations and action history over the last 5 years.
Average action value across the recorded actions is $19,814,801.90.
Overview
Award number W9124G17C0104 is associated with agency ID 9700 and shows substantial obligated funding in the last 5 years. The record includes 129 actions and $2,556,109,444.96 in total obligated value, with an average action value of $19,814,801.90.
How to use this page
Use this page to review the award’s obligation profile and action count within the selected 5-year period. The figures provide a concise basis for comparing this award’s activity against other awards in the same agency context.
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 = 'W9124G17C0104'
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 | 2,556,109,444.96 | 2.56 billion | 129 |
Insight
Over the past 5 years, obligations for PIID W9124G17C0104 are fully concentrated in DEPT OF THE ARMY, with $2.56 billion obligated across 129 awards. No other agencies appear in the provided results, indicating a single-agency funding profile for this award. This concentration suggests the award has been administered entirely within one departmental customer base over the window examined.
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 = 'W9124G17C0104'
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 |
|---|---|---|---|---|
| M1 SUPPORT SERVICES, L.P. | 3KXK1 | 2,556,109,444.96 | 2.56 billion | 129 |
Insight
Over the 5-year window, M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) is the sole top vendor associated with award PIID W9124G17C0104 for Agency ID 9700, accounting for $2.56 billion across 129 awards. This indicates a highly concentrated vendor profile, with all observed obligated value in this section attributable to a single contractor. The pattern suggests sustained reliance on the same vendor rather than a distributed 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 = 'W9124G17C0104'
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 |
|---|---|---|---|---|
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 2,556,109,444.96 | 2.56 billion | 129 |
Insight
The award is fully concentrated in NAICS 488190, Other Support Activities for Air Transportation, with $2.56 billion obligated across 129 awards over the 5-year window. This indicates a highly focused procurement profile tied to a single air transportation support category rather than a diversified NAICS mix. The award volume suggests repeated obligation activity within the same functional area.
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 = 'W9124G17C0104'
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 |
|---|---|---|---|---|
| J015 | MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS | 2,556,109,444.96 | 2.56 billion | 129 |
Insight
Obligations for PIID W9124G17C0104 over the 5-year window are fully concentrated in PSC J015, Maintenance/Repair/Rebuild of Equipment—Aircraft and Airframe Structural Components. This PSC accounts for the entire reported obligation total of $2.56 billion across 129 awards, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. The concentration suggests sustained requirement coverage within a single maintenance/repair category.
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 = 'W9124G17C0104'
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 | 364,193,720.75 | 364.19 million | 26 |
| 2022 | 537,389,779.88 | 537.39 million | 27 |
| 2023 | 558,212,740.16 | 558.21 million | 26 |
| 2024 | 632,906,366.21 | 632.91 million | 28 |
| 2025 | 463,406,837.96 | 463.41 million | 22 |
Insight
Obligations for PIID W9124G17C0104 increased from $364.19 million in 2021 to a peak of $632.91 million in 2024, before declining to $463.41 million in 2025. Award counts remained relatively stable at 26–28 awards per year from 2021 through 2024, then fell to 22 in 2025, indicating a lower-volume year alongside the reduction in obligated dollars. Overall, the series shows growth through 2024 followed by a moderate contraction in both funding and award activity in 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.