This award page covers PIID W9124G17C0104 for Agency ID 9700. The record shows 206 actions with total obligated amount of 4.22 billion dollars over the last 10 years.
Award Number
Award Number 9700 / W9124G17C0104 Federal Contract Action Summary (Last 10 Years)
Federal award record for PIID W9124G17C0104 under Agency ID 9700, summarizing obligations and action history over the last 10 years.
Totals reflect the provided analysis window and may differ from current system values if records are updated.
Overview
The award history for PIID W9124G17C0104 spans 206 reported actions in the last 10 years. Total obligated funding is 4,222,239,339.61, with an average action value of 20,496,307.47. These figures provide a concise view of the award's funding volume and transaction activity.
How to use this page
Use this page to review the award's obligation total, action count, and average action value for analytical comparison. The record supports basic trend review, scope assessment, and identification of high-level procurement activity 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 = 'W9124G17C0104'
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 | 4,222,239,339.61 | 4.22 billion | 206 |
Insight
For PIID W9124G17C0104 over the 10-year window, obligations are fully concentrated in the DEPT OF THE ARMY, which accounts for $4.22 billion across 206 awards. This indicates a highly concentrated funding pattern with no visible distribution across other agencies in the provided data. The volume of awards suggests sustained agency-level activity rather than an isolated transaction profile.
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 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 |
|---|---|---|---|---|
| M1 SUPPORT SERVICES, L.P. | 3KXK1 | 4,222,239,339.61 | 4.22 billion | 206 |
Insight
M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) accounts for the full visible vendor total in this 10-year award view, with $4.22 billion obligated across 206 awards under PIID W9124G17C0104. This indicates a highly concentrated award relationship, with obligations and award activity centered on a single vendor. The volume of awards alongside the obligated amount suggests sustained, repeated contractual engagement over the period.
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 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 |
|---|---|---|---|---|
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 4,222,239,339.61 | 4.22 billion | 206 |
Insight
Over the 10-year window, obligations for PIID W9124G17C0104 are fully concentrated in NAICS 488190, Other Support Activities for Air Transportation. This NAICS accounts for $4.22 billion across 206 awards, indicating sustained, single-category procurement activity rather than a diversified NAICS mix. The concentration suggests this award has been used consistently for air transportation support requirements within the identified period.
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 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 |
|---|---|---|---|---|
| J015 | MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS | 4,222,239,339.61 | 4.22 billion | 206 |
Insight
Obligations for this award are fully concentrated in PSC J015, Maintenance/Repair/Rebuild of Equipment—Aircraft and Airframe Structural Components, totaling $4.22 billion across 206 actions over the 10-year window. This indicates a highly focused scope of work with no visible diversification across PSCs in the provided data. The volume of actions suggests recurring obligations under a consistent maintenance and repair requirement.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2017 | 0.00 | 0.00 | 2 |
| 2018 | 511,595,991.74 | 511.60 million | 20 |
| 2019 | 505,184,245.61 | 505.18 million | 27 |
| 2020 | 649,349,657.30 | 649.35 million | 28 |
| 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 under PIID W9124G17C0104 are concentrated in the 2018–2025 period, with annual totals generally ranging from about $364.2 million to $649.3 million. Funding peaked in 2020 at $649.3 million, declined sharply in 2021 to $364.2 million, then rebounded through 2024 to $632.9 million before decreasing to $463.4 million in 2025. Award counts remained relatively stable at 20–28 awards per year from 2018 through 2025, indicating sustained activity despite year-to-year fluctuations in obligated dollars.
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.