PSC Code

PSC 7E20 Federal Contract Obligations (Last 10 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 10 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 10 years. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last 10 years

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last 10 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.92 billion
10,916,213,589.97
Award Actions
74,997
Average Action Value
145,555.33

About PSC 7E20 federal contract activity

This page summarizes last 10 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.92 billion in visible obligations across 74,997 award actions, with an average action value of 145,555.33. 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 10 years. The visible agency ranking is led by DEPT OF THE AIR FORCE, with 1.71 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 10 years. The current ranking is led by FCN, INC., with 787.34 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 10 years, from 2020 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 10 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 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
5700 DEPT OF THE AIR FORCE 1,714,670,527.88 1.71 billion 10,335
2050 INTERNAL REVENUE SERVICE 1,229,781,643.81 1.23 billion 1,648
1700 DEPT OF THE NAVY 1,123,191,069.13 1.12 billion 6,059
3600 VETERANS AFFAIRS, DEPARTMENT OF 908,626,283.88 908.63 million 1,475
2100 DEPT OF THE ARMY 867,312,728.72 867.31 million 3,818
1549 FEDERAL BUREAU OF INVESTIGATION 676,666,267.52 676.67 million 1,175
97AS DEFENSE LOGISTICS AGENCY 608,394,694.89 608.39 million 8,566
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 525,806,351.29 525.81 million 5,108
7529 NATIONAL INSTITUTES OF HEALTH 438,076,154.51 438.08 million 2,368
7014 U.S. CUSTOMS AND BORDER PROTECTION 276,798,892.56 276.80 million 574

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 10 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 10 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 787,336,054.55 787.34 million 3,469
HPI FEDERAL LLC 7ESQ7 473,001,919.27 473.00 million 2,410
DELL FEDERAL SYSTEMS L.P. 3XAU1 447,544,894.86 447.54 million 1,516
NEW TECH SOLUTIONS, INC. 1QN24 424,694,000.76 424.69 million 4,379
THUNDERCAT TECHNOLOGY, LLC 50WM7 411,892,783.81 411.89 million 782
MINBURN TECHNOLOGY GROUP, LLC 66LV8 367,558,848.68 367.56 million 144
DELL MARKETING L.P. 3DMD3 367,033,497.06 367.03 million 246
STERLING COMPUTERS CORPORATION 06AP0 311,960,471.75 311.96 million 1,938
COUNTERTRADE PRODUCTS, INC. 0J699 310,117,091.74 310.12 million 2,022
GOVERNMENT ACQUISITIONS, INC. 0J658 222,915,833.63 222.92 million 1,752

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 10 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 10 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
2020 68,566,987.94 68.57 million 1,946

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