Over the last 5 years, SAUER INCORPORATED recorded 561 award actions with total obligations of $1,084,364,698.48 and an average action value of $1,932,913.90. The vendor’s activity is concentrated with the Department of the Navy and Department of the Army, and most obligations fall under commercial and institutional building construction.
Federal Contractor
SAUER INCORPORATED Federal Contract Obligations (Last 5 Years)
SAUER INCORPORATED (CAGE 0DX52, UEI SBVUVJ2G3NL4) has 561 awards totaling $1.08 billion over the last 5 years, led by Navy and Army construction work.
Amounts reflect obligated dollars in the analysis window and may include negative or zero values in individual NAICS rows.
About SAUER INCORPORATED federal contract activity
SAUER INCORPORATED (CAGE 0DX52, UEI SBVUVJ2G3NL4) recorded 561 awards totaling 1.08 billion in obligated dollars over the last 5 years, with an average award value of 1.93 million. The profile is heavily weighted toward construction-related federal work, with most obligations concentrated in a small number of agencies and NAICS codes.
Agency mix and customer concentration
The DEPT OF THE NAVY is the dominant customer, accounting for 860.80 million across 305 awards, or roughly four-fifths of total obligated value. The DEPT OF THE ARMY is the second-largest agency at 205.72 million over 150 awards, while the PUBLIC BUILDINGS SERVICE and NASA represent much smaller shares of the portfolio.
Industry profile based on NAICS activity
NAICS 236220, Commercial and Institutional Building Construction, is the core work category, totaling 919.90 million across 431 awards. NAICS 237990, Other Heavy and Civil Engineering Construction, is the next largest at 157.95 million, followed by a much smaller position in 236210; the remaining categories include minimal or negative obligated values, indicating limited activity outside the core construction base.
Annual contract trend over the analysis window
Annual obligations were strongest in 2022 at 370.84 million, then declined in 2023 and 2024 before rebounding to 256.13 million in 2025. Award counts do not move in lockstep with dollars, with 2023 showing the highest count at 141 awards despite lower obligated value than 2022 and 2025.
How to interpret this page
This summary is based on FPDS award records for the last 5 years, using obligated dollars and award counts tied to the vendor's CAGE code and UEI. Agency and NAICS concentration are derived from totals within the provided analysis window; dollar figures may reflect modifications, deobligations, and other contract actions captured in FPDS.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0DX52'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 860,802,099.30 | 860.80 million | 305 |
| 2100 | DEPT OF THE ARMY | 205,720,415.07 | 205.72 million | 150 |
| 4740 | PUBLIC BUILDINGS SERVICE | 11,330,519.11 | 11.33 million | 13 |
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 6,511,665.00 | 6.51 million | 93 |
Insight
Over the last 5 years, SAUER INCORPORATED’s obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $860.80 million across 305 awards, or the majority of the vendor’s $1.08 billion total. The DEPT OF THE ARMY is the second-largest customer at $205.72 million across 150 awards, indicating a strong but much smaller secondary relationship. The remaining agencies contribute relatively limited obligated value: PUBLIC BUILDINGS SERVICE at $11.33 million across 13 awards and NASA at $6.51 million across 93 awards.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0DX52'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 236220 | COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION | 919,901,878.31 | 919.90 million | 431 |
| 237990 | OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION | 157,951,155.17 | 157.95 million | 36 |
| 236210 | INDUSTRIAL BUILDING CONSTRUCTION | 6,662,413.00 | 6.66 million | 86 |
| 238160 | ROOFING CONTRACTORS | 0.00 | 0.00 | 1 |
| 238220 | PLUMBING, HEATING, AND AIR-CONDITIONING CONTRACTORS | -150,748.00 | -150.75 thousand | 7 |
Insight
Over the last 5 years, SAUER INCORPORATED’s obligations are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $919.90 million across 431 awards, or the clear majority of its $1.08 billion total. NAICS 237990, Other Heavy and Civil Engineering Construction, is the only other materially significant category at $157.95 million across 36 awards, while all remaining NAICS codes are minor by obligation value. Activity in NAICS 236210, Industrial Building Construction, is present but comparatively limited at $6.66 million across 86 awards, and the negative obligation in NAICS 238220 indicates a small net deobligation within that category.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0DX52'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 256,133,644.43 | 256.13 million | 100 |
| 2024 | 193,162,582.36 | 193.16 million | 127 |
| 2023 | 151,765,669.80 | 151.77 million | 141 |
| 2022 | 370,839,039.78 | 370.84 million | 92 |
| 2021 | 112,463,762.11 | 112.46 million | 101 |
Insight
Over the last 5 years, SAUER INCORPORATED (CAGE 0DX52) obligated $1.08 billion across 561 awards, with an average award value of $1.93 million. Obligations are unevenly distributed, with a pronounced peak in 2022 at $370.84 million, followed by lower but still significant annual totals in 2023 ($151.77 million), 2024 ($193.16 million), and 2025 ($256.13 million). Award counts were more stable than dollars, ranging from 92 to 141 per year, indicating that obligation volatility was driven more by award size than by transaction volume.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.