Federal Contractor

SAUER INCORPORATED Federal Contract Obligations (Last Year)

Federal procurement profile for SAUER INCORPORATED (CAGE 0DX52, UEI SBVUVJ2G3NL4) covering obligations, award activity, agencies, and NAICS mix in the last full year.

SAUER INCORPORATED recorded 100 award actions and $256.13 million in obligated value during the analysis window. Activity was concentrated in DEPT OF THE NAVY and in NAICS 236220, Commercial and Institutional Building Construction.

Generated at 03/21/2026

Analysis period: Last full year

Agency and NAICS totals may reflect both positive and negative obligations, so subtotals can differ from the overall vendor total.

CAGE Code
0DX52
UEI
SBVUVJ2G3NL4
Total Obligated
256.13 million
256,133,644.43
Award Actions
100
Average Action Value
2,561,336.44

About SAUER INCORPORATED federal contract activity

SAUER INCORPORATED (CAGE 0DX52, UEI SBVUVJ2G3NL4) recorded 256.13 million in obligated contract value across 100 awards in the last full year, for an average award value of 2.56 million. The profile indicates a mid-sized award count concentrated in a relatively small number of high-value construction actions.

Agency mix and customer concentration

The Department of the Navy accounted for the largest share of reported activity, with 268.55 million across 70 awards. NASA contributed a much smaller 757.55 thousand across 8 awards, while the Public Buildings Service and Department of the Army show negative obligated totals in the extract, which can occur when deobligations or contract adjustments exceed new obligations during the period.

Industry profile based on NAICS activity

Award activity was dominated by NAICS 236220, Commercial and Institutional Building Construction, at 250.48 million across 89 awards. Secondary activity appeared in NAICS 237990, Other Heavy and Civil Engineering Construction, at 4.90 million across 3 awards, with NAICS 236210, Industrial Building Construction, contributing 757.55 thousand across 8 awards.

Annual contract trend over the analysis window

The annual trend shows all reported activity in 2025, totaling 256.13 million across 100 awards. With only one year in the analysis window, this extract supports a point-in-time view rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS-observed obligations for the last full year and is organized by vendor identifiers, awarding agency, and NAICS classification. Award counts and obligated amounts may not reconcile perfectly across every rollup because deobligations, modifications, and accounting adjustments can affect agency and category totals. Negative obligated amounts are retained as reported in the source extract and should be interpreted as net adjustments within the period.

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 1 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 268,547,495.62 268.55 million 70
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 757,548.00 757.55 thousand 8
4740 PUBLIC BUILDINGS SERVICE -2,745,255.38 -2.75 million 1
2100 DEPT OF THE ARMY -10,426,143.81 -10.43 million 21

Insight

SAUER INCORPORATED’s last full year obligations were concentrated in the DEPT OF THE NAVY, which accounted for 268.55 million across 70 awards and exceeded the vendor’s reported total obligated of 256.13 million, indicating that other agency obligations offset part of the Navy volume. Smaller positive obligations were recorded with NASA at 757.55 thousand across 8 awards. Negative obligated amounts with the DEPT OF THE ARMY (-10.43 million across 21 awards) and the PUBLIC BUILDINGS SERVICE (-2.75 million across 1 award) materially reduced the net total, showing that award activity was not evenly distributed across agencies.

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 1 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 250,476,087.43 250.48 million 89
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 4,900,009.00 4.90 million 3
236210 INDUSTRIAL BUILDING CONSTRUCTION 757,548.00 757.55 thousand 8

Insight

SAUER INCORPORATED (CAGE 0DX52) received 256.13 million across 100 awards in the last full year, with activity highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for 250.48 million across 89 awards. NAICS 237990, Other Heavy and Civil Engineering Construction, is a distant second at 4.90 million over 3 awards, indicating limited diversification outside the primary construction category. NAICS 236210, Industrial Building Construction, contributed 757.55 thousand across 8 awards and represents only a minor share of total obligations.

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 1 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

Insight

During the last full year, SAUER INCORPORATED (CAGE 0DX52) recorded $256.13 million in obligated funding across 100 awards, for an average award value of $2.56 million. Because the window contains only a single year of data, no multi-year trend can be assessed. The award profile indicates a moderately distributed obligation base rather than reliance on a small number of exceptionally large awards, though concentration cannot be fully determined without award-level detail.

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