Award Number

Award Number 9700 / W9124G17C0104 Federal Contract Action Summary (Last Year)

Federal procurement summary for award number W9124G17C0104 under agency ID 9700, based on the last full year of obligation data.

This page summarizes award activity for PIID W9124G17C0104 during the last full year. The award shows 22 actions and total obligations of $463,406,837.96, with an average action value of $21,063,947.18.

Generated at 03/20/2026

Analysis period: Last full year

Dollar amounts reflect the provided readable total obligation of $463.41 million and the exact total obligation of $463,406,837.96.

Agency ID
9700
PIID
W9124G17C0104
Type
Award
Total Obligated
463.41 million
463,406,837.96
Actions
22
Average Action Value
21,063,947.18

Overview

The award record for W9124G17C0104 shows procurement activity concentrated within the last full year, with 22 recorded actions and total obligations of $463,406,837.96. The average action value was $21,063,947.18, indicating substantial individual action amounts within the award history.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for W9124G17C0104. The figures support a quick check of overall spending level and activity volume for agency ID 9700 during the selected period.

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 1 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 463,406,837.96 463.41 million 22

Insight

Over the past 1 year for PIID W9124G17C0104, obligations are concentrated entirely within DEPT OF THE ARMY, which accounts for the full reported total of $463.41 million across 22 awards. This indicates a highly concentrated funding profile with no other agencies represented in the provided rows. The distribution suggests the award activity is structurally tied to a single 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 = '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 1 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 463,406,837.96 463.41 million 22

Insight

M1 SUPPORT SERVICES, L.P. is the sole vendor listed in this 1-year view for award PIID W9124G17C0104, with 22 awards totaling $463.41 million. Obligations are fully concentrated with one contractor, indicating no vendor diversification in the provided period. This level of concentration suggests the award activity is heavily reliant on a single supplier.

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 1 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 463,406,837.96 463.41 million 22

Insight

Within the 1-year window for award W9124G17C0104, obligations are entirely concentrated in NAICS 488190, Other Support Activities for Air Transportation. This category accounts for $463.41 million across 22 awards, indicating a highly focused obligation pattern rather than a diversified NAICS distribution.

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 1 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 463,406,837.96 463.41 million 22

Insight

Obligations on this award are fully concentrated in PSC J015, MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS, which accounts for the entire 1-year obligation total of $463.41 million across 22 actions. This indicates a highly specialized support profile with no observable PSC diversification in the provided data. The distribution suggests the award is dedicated to aircraft and airframe structural maintenance and repair requirements.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 463,406,837.96 463.41 million 22

Insight

For PIID W9124G17C0104 in Agency 9700, the 1-year annual trend is concentrated entirely in FY 2025. The award reflects $463.41 million across 22 award actions, indicating substantial obligated volume with activity distributed across multiple awards rather than a single transaction. With only one year present in the window, no year-over-year trend can be assessed from this dataset.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.