Federal Contractor

HP ENTERPRISE SERVICES, LLC Federal Contract Obligations (Last 10 Years)

HP ENTERPRISE SERVICES, LLC (CAGE 1U305, UEI MBSRAWAQ9559) is a federal contractor with 9,275 award actions and $13.83 billion obligated over the last 10 years.

HP ENTERPRISE SERVICES, LLC recorded $13,831,936,316.10 in obligated federal spending across 9,275 award actions in the last 10 years, averaging $1,491,313.88 per action. The largest shares of work came from the Department of the Navy, Federal Acquisition Service, Centers for Medicare and Medicaid Services, Department of the Air Force, and the Department of Education.

Generated at 03/21/2026

Analysis period: Last 10 years

This page summarizes the last 10 years of FPDS-observed obligations and award counts for HP ENTERPRISE SERVICES, LLC and uses the provided readable totals and exact values.

CAGE Code
1U305
UEI
MBSRAWAQ9559
Total Obligated
13.83 billion
13,831,936,316.10
Award Actions
9,275
Average Action Value
1,491,313.88

About HP ENTERPRISE SERVICES, LLC federal contract activity

HP ENTERPRISE SERVICES, LLC (CAGE 1U305, UEI MBSRAWAQ9559) recorded $13.83 billion in obligated value across 9,275 FPDS awards over the last 10 years, for an average award value of $1.49 million. The volume and dollar total indicate a consistently active federal vendor with substantial recurring obligations rather than a limited, one-off procurement footprint.

Agency mix and customer concentration

The vendor’s obligations are concentrated in a small set of civilian and defense buyers, led by the Department of the Navy at $4.34 billion across 3,268 awards. Federal Acquisition Service ($2.43 billion), CMS ($1.24 billion), the Department of the Air Force ($1.03 billion), and the Department of Education ($607.07 million) round out the top five, showing a mix of enterprise IT, shared services, healthcare, and defense demand.

Industry profile based on NAICS activity

Contracting is dominated by NAICS 541512, Computer Systems Design Services, which accounts for $10.51 billion and 6,049 awards, making it the clear core of the vendor’s federal work. Secondary activity is centered on 518210, Data Processing, Hosting, and Related Services ($2.09 billion), with smaller but material obligations in 541519, 517110, and 334111, indicating adjacent technology, infrastructure, and telecom work.

Annual contract trend over the analysis window

Annual obligations in the visible recent years have remained at a high and relatively steady level, ranging from $954.41 million in 2022 to $1.25 billion in 2021, with 2024 and 2025 also above $900 million. Award counts track a similarly active profile, peaking at 730 in 2021 and remaining in the 486 to 661 range thereafter, suggesting sustained procurement activity rather than a single surge year.

How to interpret this page

This profile summarizes FPDS obligations tied to HP ENTERPRISE SERVICES, LLC using the supplied CAGE code and UEI over the last 10 years. Agency, NAICS, and annual views are based on recorded obligated dollars and award counts in the provided dataset; totals may differ from other sources due to FPDS extraction timing, record updates, or downstream normalization.

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 = '1U305'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
1700 DEPT OF THE NAVY 4,341,301,411.83 4.34 billion 3,268
4732 FEDERAL ACQUISITION SERVICE 2,430,865,021.15 2.43 billion 748
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 1,241,276,417.60 1.24 billion 234
5700 DEPT OF THE AIR FORCE 1,025,956,012.03 1.03 billion 1,249
9100 EDUCATION, DEPARTMENT OF 607,073,887.22 607.07 million 187
97DH DEFENSE HEALTH AGENCY (DHA) 582,451,174.15 582.45 million 108
7524 FOOD AND DRUG ADMINISTRATION 398,245,458.79 398.25 million 47
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 371,624,714.40 371.62 million 191
2100 DEPT OF THE ARMY 328,410,496.41 328.41 million 271
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 279,743,224.86 279.74 million 130

Insight

Over the last 10 years, HP ENTERPRISE SERVICES, LLC has $13.83 billion in obligations across 9,275 awards, with spend concentrated in a small set of agencies. The DEPT OF THE NAVY is the largest customer at $4.34 billion and 3,268 awards, followed by the FEDERAL ACQUISITION SERVICE at $2.43 billion and CMS at $1.24 billion. The remaining top agencies are materially smaller, ranging from $1.03 billion at the DEPT OF THE AIR FORCE to $279.74 million at NASA, indicating a broad but uneven distribution of obligations across defense, civilian, and health 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 = '1U305'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541512 COMPUTER SYSTEMS DESIGN SERVICES 10,509,892,381.77 10.51 billion 6,049
518210 DATA PROCESSING, HOSTING, AND RELATED SERVICES 2,085,983,165.41 2.09 billion 2,021
541519 OTHER COMPUTER RELATED SERVICES 547,318,271.95 547.32 million 375
517110 WIRED TELECOMMUNICATIONS CARRIERS 310,017,745.65 310.02 million 245
334111 ELECTRONIC COMPUTER MANUFACTURING 169,633,694.73 169.63 million 23
519190 ALL OTHER INFORMATION SERVICES 117,123,143.33 117.12 million 45
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 83,474,704.50 83.47 million 176
541513 COMPUTER FACILITIES MANAGEMENT SERVICES 48,299,184.61 48.30 million 151
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 15,499,742.71 15.50 million 60
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 8,046,563.59 8.05 million 9

Insight

HP ENTERPRISE SERVICES, LLC’s obligations over the last 10 years are highly concentrated in NAICS 541512, COMPUTER SYSTEMS DESIGN SERVICES, which accounts for $10.51 billion across 6,049 awards, or roughly three-quarters of total obligated dollars. The next largest category, NAICS 518210, DATA PROCESSING, HOSTING, AND RELATED SERVICES, adds $2.09 billion across 2,021 awards, bringing the top two NAICS to about 91% of total obligations. Remaining spending is fragmented across smaller IT and telecom-related NAICS, with no other category exceeding $547.32 million or 375 awards, indicating a broad but secondary distribution beyond the core service lines.

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 = '1U305'
        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 DESC
Year Total Obligated Readable Award Actions
2025 937,306,498.40 937.31 million 486
2024 1,160,644,652.84 1.16 billion 661
2023 1,078,530,289.61 1.08 billion 606
2022 954,408,051.79 954.41 million 653
2021 1,249,715,947.05 1.25 billion 730
2020 1,862,186,059.42 1.86 billion 830
2019 1,612,543,629.50 1.61 billion 959
2018 2,288,006,409.66 2.29 billion 1,690
2017 1,700,268,768.81 1.70 billion 1,712
2016 988,326,009.02 988.33 million 948

Insight

Over the last 10 years, HP ENTERPRISE SERVICES, LLC accumulated $13.83 billion across 9,275 awards, averaging about $1.49 million per award. Obligations were most concentrated in 2018 ($2.29 billion, 1,690 awards) and remained above $1.0 billion annually from 2017 through 2024, with a high in 2020 ($1.86 billion) followed by a general decline. The most recent year, 2025, is below prior-year levels at $937.31 million and 486 awards, indicating reduced annual volume relative to the 2017–2024 period.

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