PSC Code

PSC 7E20 Federal Contract Obligations (Last 5 Years)

This page summarizes federal contract obligations for PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) for last 5 years, including award volume and market trend context.

Use this page to review federal contract obligations for PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) for last 5 years. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last 5 years

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last 5 years analysis window.

PSC Code
7E20
PSC Description
IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)
Total Obligated
10.85 billion
10,847,646,602.03
Award Actions
73,051
Average Action Value
148,494.15

About PSC 7E20 federal contract activity

This page summarizes last 5 years of federal contract activity associated with PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)). Based on the current FPDS Query dataset, this category shows 10.85 billion in visible obligations across 73,051 award actions, with an average action value of 148,494.15. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

Demand for PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) appears concentrated among a relatively small group of federal buyers over the last 5 years. The visible agency ranking is led by DEPT OF THE AIR FORCE, with 1.69 billion in obligations, followed by INTERNAL REVENUE SERVICE. This kind of concentration is useful context for business development, bid targeting, and understanding where the strongest federal demand appears to sit.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) over the last 5 years. The current ranking is led by FCN, INC., with 785.86 million in obligations, followed by HPI FEDERAL LLC. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved for PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) across the last 5 years, from 2021 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market segment.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of category-scale obligations, top buying agencies, leading vendors, and visible year-over-year movement within last 5 years. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

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__productOrServiceInformation__productOrServiceCode = '7E20'
        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
5700 DEPT OF THE AIR FORCE 1,692,285,076.39 1.69 billion 10,285
2050 INTERNAL REVENUE SERVICE 1,220,997,388.11 1.22 billion 1,634
1700 DEPT OF THE NAVY 1,116,035,711.71 1.12 billion 6,005
3600 VETERANS AFFAIRS, DEPARTMENT OF 907,201,522.53 907.20 million 1,445
2100 DEPT OF THE ARMY 863,030,916.64 863.03 million 3,796
1549 FEDERAL BUREAU OF INVESTIGATION 676,666,267.52 676.67 million 1,175
97AS DEFENSE LOGISTICS AGENCY 604,320,165.36 604.32 million 8,496
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 517,377,005.44 517.38 million 5,105
7529 NATIONAL INSTITUTES OF HEALTH 435,479,663.86 435.48 million 2,334
7014 U.S. CUSTOMS AND BORDER PROTECTION 276,663,903.37 276.66 million 573

Insight

PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) appears to be concentrated among a relatively small group of major buying agencies over the last 5 years. The visible ranking is led by DEPT OF THE AIR FORCE, followed by INTERNAL REVENUE SERVICE, which suggests that agency demand in this category is not evenly distributed.

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(anyHeavy(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
        contract_type = 1
        AND content__award__productOrServiceInformation__productOrServiceCode = '7E20'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
FCN, INC. 0WU14 785,856,500.11 785.86 million 3,466
HPI FEDERAL LLC 7ESQ7 472,201,633.51 472.20 million 2,405
DELL FEDERAL SYSTEMS L.P. 3XAU1 446,345,629.20 446.35 million 1,506
NEW TECH SOLUTIONS, INC. 1QN24 424,270,173.76 424.27 million 4,361
THUNDERCAT TECHNOLOGY, LLC 50WM7 410,732,499.63 410.73 million 773
DELL MARKETING L.P. 3DMD3 366,686,663.56 366.69 million 241
MINBURN TECHNOLOGY GROUP, LLC 66LV8 365,088,951.36 365.09 million 142
STERLING COMPUTERS CORPORATION 06AP0 309,915,002.09 309.92 million 1,925
COUNTERTRADE PRODUCTS, INC. 0J699 308,464,687.86 308.46 million 2,002
GOVERNMENT ACQUISITIONS, INC. 0J658 221,214,992.60 221.21 million 1,748

Insight

Within PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)), visible obligations over the last 5 years appear concentrated among a relatively small set of leading vendors. FCN, INC. ranks first, followed by HPI FEDERAL LLC, which helps define the current competitive landscape in this 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__productOrServiceInformation__productOrServiceCode = '7E20'
        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 2,158,226,811.34 2.16 billion 10,742
2024 2,371,251,012.13 2.37 billion 13,892
2023 2,657,857,694.37 2.66 billion 13,772
2022 1,967,673,143.51 1.97 billion 14,731
2021 1,692,637,940.68 1.69 billion 19,914

Insight

The annual trend shows how obligations in PSC 7E20 (IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW)) moved across the last 5 years, from 2021 through 2025. This helps users judge whether visible contract activity in this category appears stable, rising, or easing over time.

Use FPDS Query for deeper PSC analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper PSC analysis across agencies, vendors, 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.