PSC Code

PSC R706 Federal Contract Obligations (Last 5 Years)

PSC R706 covers support-management logistics support obligations totaling $37.76 billion across 216,932 award actions in the last five years.

R706, Support-Management: Logistics Support, shows sustained federal demand across defense and civilian logistics support missions. The Department of the Army leads total obligations, while the Federal Acquisition Service records the highest award volume among the top agencies.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last five years of readable FPDS obligations, with annual and vendor rankings based on obligated dollars and award counts provided.

PSC Code
R706
PSC Description
SUPPORT- MANAGEMENT: LOGISTICS SUPPORT
Total Obligated
37.76 billion
37,760,505,275.75
Award Actions
216,932
Average Action Value
174,066.09

About PSC R706 federal contract activity

PSC R706, Support- Management: Logistics Support, accounted for $37.76 billion in obligations across 216,932 awards over the last 5 years, with an average award value of $174,066.09. The volume and value profile indicate a high-transaction logistics support category with a mix of large program awards and very numerous smaller actions.

Agency demand and leading federal buyers

The Department of the Army led all agencies with $17.49 billion across 7,997 awards, followed by the Department of the Air Force at $5.64 billion and USSOCOM at $3.90 billion. The Department of the Navy also represented a major share at $3.78 billion, while the Federal Acquisition Service stood out for exceptionally high award volume, with 178,068 awards totaling $1.65 billion.

Vendor concentration and leading contractors

KBR Services, LLC and Vectrus Systems Corporation were the top vendors by obligated value, with $5.32 billion and $5.20 billion respectively. Lockheed Martin Corporation follows with $3.85 billion and the highest award count among the top vendors at 5,622, while Amentum Services, Inc. and L-3 Communications Integrated Systems L.P. round out the leading suppliers by value.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at $8.80 billion, then remained in a relatively tight band from 2022 through 2024 before easing to $6.65 billion in 2025. Award counts were highest in 2022 through 2024, with 2024 slightly above 2023, while 2025 shows lower activity to date than the prior three years.

How to interpret this page

This analysis covers FPDS awards in PSC R706 over the last 5 years and summarizes obligated dollars and award counts by agency, vendor, and fiscal year. Totals reflect reported obligations captured in the query window and are not adjusted for inflation, deobligation timing, or outlier 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__productOrServiceInformation__productOrServiceCode = 'R706'
        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
2100 DEPT OF THE ARMY 17,491,480,437.00 17.49 billion 7,997
5700 DEPT OF THE AIR FORCE 5,635,437,749.90 5.64 billion 3,687
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 3,901,636,524.93 3.90 billion 5,763
1700 DEPT OF THE NAVY 3,783,689,296.53 3.78 billion 8,657
4732 FEDERAL ACQUISITION SERVICE 1,650,609,301.28 1.65 billion 178,068
1900 STATE, DEPARTMENT OF 1,484,606,731.74 1.48 billion 3,165
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 607,968,906.31 607.97 million 33
7013 TRANSPORTATION SECURITY ADMINISTRATION 542,951,893.04 542.95 million 102
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 441,234,255.82 441.23 million 1,033
97AS DEFENSE LOGISTICS AGENCY 311,665,602.43 311.67 million 226

Insight

Over the last 5 years, PSC R706 obligated $37.76 billion across 216,932 awards, with spending concentrated in defense organizations. The Department of the Army led by a wide margin at $17.49 billion, followed by the Department of the Air Force ($5.64 billion), USSOCOM ($3.90 billion), and the Department of the Navy ($3.78 billion); these four agencies account for the majority of obligations in this PSC. The Federal Acquisition Service is notable for a much higher award volume than any other listed agency—178,068 awards—but at a comparatively lower $1.65 billion in obligations, indicating a more fragmented, lower-dollar award pattern.

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 = 'R706'
        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
KBR SERVICES, LLC 3GJU9 5,323,636,828.49 5.32 billion 866
VECTRUS SYSTEMS CORPORATION 1D510 5,200,388,159.56 5.20 billion 490
LOCKHEED MARTIN CORPORATION 622B7 3,851,986,803.12 3.85 billion 5,622
AMENTUM SERVICES, INC. 5W3V7 1,747,802,018.97 1.75 billion 536
L-3 COMMUNICATIONS INTEGRATED SYSTEMS L.P. 78JP6 928,717,012.93 928.72 million 108
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 919,092,097.47 919.09 million 366
SIERRA NEVADA CORPORATION 4EXW5 882,647,965.21 882.65 million 164
ACQUISITION LOGISTICS LLC 50E79 875,343,028.34 875.34 million 24
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 780,543,288.47 780.54 million 313
MANTECH ADVANCED SYSTEMS INTERNATIONAL, INC. 5N741 687,071,426.30 687.07 million 86

Insight

Over the last 5 years, PSC R706 obligated $37.76 billion across 216,932 awards, with activity concentrated among a small set of vendors. KBR Services, LLC and Vectrus Systems Corporation lead obligations at $5.32 billion and $5.20 billion, respectively, while Lockheed Martin Corporation has the highest award count among the top vendors at 5,622 awards, indicating a broader but smaller-value distribution. The remaining top vendors each account for less than $2 billion in obligations, suggesting a long tail beyond the leading firms.

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 = 'R706'
        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 6,647,724,482.58 6.65 billion 14,267
2024 7,646,801,022.16 7.65 billion 55,186
2023 7,766,762,661.85 7.77 billion 54,014
2022 6,896,554,057.29 6.90 billion 56,448
2021 8,802,663,051.87 8.80 billion 37,017

Insight

Over the last 5 years, PSC R706 accounted for $37.76 billion across 216,932 awards, with an average award value of $174,066. Obligations were highest in 2021 at $8.80 billion, remained elevated in 2022-2024 at roughly $6.90 billion to $7.77 billion annually, and declined to $6.65 billion in 2025. Award volume was concentrated in 2022-2024, each with more than 54,000 awards, while 2025 shows a marked drop to 14,267 awards, indicating a lower level of activity in the most recent year.

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.