Federal Contractor

SCIENCE APPLICATIONS INTERNATIONAL CORPORATION Federal Contract Obligations (Last 5 Years)

SCIENCE APPLICATIONS INTERNATIONAL CORPORATION has 20.33 billion in federal obligations across 21,076 award actions over the last 5 years.

SCIENCE APPLICATIONS INTERNATIONAL CORPORATION (CAGE 6XWA8, UEI MMLKPW9JLX64) shows sustained federal contracting activity, led by the Federal Acquisition Service, the Department of the Navy, and the Department of the Air Force. Its largest obligation categories are computer systems design services, engineering services, and research and development in the physical, engineering, and life sciences.

Generated at 03/21/2026

Analysis period: Last 5 years

This summary reflects the last 5 years of readable FPDS obligation data and may differ from totals shown in other reporting views due to rounding or record scope.

CAGE Code
6XWA8
UEI
MMLKPW9JLX64
Total Obligated
20.33 billion
20,327,779,003.58
Award Actions
21,076
Average Action Value
964,498.90

About SCIENCE APPLICATIONS INTERNATIONAL CORPORATION federal contract activity

SCIENCE APPLICATIONS INTERNATIONAL CORPORATION (CAGE 6XWA8, UEI MMLKPW9JLX64) recorded 20.33 billion in obligated awards across 21,076 awards in the last 5 years, for an average award value of 964,498.9. The profile indicates a large, high-volume federal contracting footprint spanning civilian and defense customers, with award activity concentrated in recurring service and technical support engagements.

Agency mix and customer concentration

The Federal Acquisition Service is the largest funding source at 4.86 billion across 1,177 awards, indicating substantial use of governmentwide procurement channels. Defense agencies collectively account for the next largest share, led by the Department of the Navy at 4.06 billion across 7,468 awards, followed by the Department of the Air Force at 2.90 billion and the Department of the Army at 2.36 billion. The Department of State is also a notable customer at 1.02 billion, showing exposure beyond core defense procurement.

Industry profile based on NAICS activity

The vendor’s award base is anchored in NAICS 541512, Computer Systems Design Services, with 6.93 billion across 2,054 awards, and NAICS 541330, Engineering Services, with 5.40 billion across 10,690 awards. Research and development work is also material, with 541712 and 541715 together totaling 5.11 billion, while 541519 adds another 655.76 million. Overall, the mix shows a blend of systems integration, engineering, and technical R&D services rather than a single-line specialization.

Annual contract trend over the analysis window

Annual obligations remained above 3.5 billion in each year of the window, rising from 3.71 billion in 2021 to a peak of 4.59 billion in 2024 before easing to 3.90 billion in 2025. Award counts were highest in 2024 at 4,753 and stayed elevated in 2025 at 3,675, suggesting sustained procurement volume even as obligated value moderated. The pattern is consistent with a stable, broad-based contract portfolio rather than a one-time surge.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 6XWA8 and UEI MMLKPW9JLX64 over the last 5 years. Obligated dollars and award counts are aggregated across the analysis window, with agency and NAICS rankings reflecting total obligated value in the reported period. Yearly trend figures use annual obligated totals and award counts as provided in the dataset.

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 = '6XWA8'
        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
4732 FEDERAL ACQUISITION SERVICE 4,862,598,319.68 4.86 billion 1,177
1700 DEPT OF THE NAVY 4,055,508,819.80 4.06 billion 7,468
5700 DEPT OF THE AIR FORCE 2,904,563,198.74 2.90 billion 2,393
2100 DEPT OF THE ARMY 2,355,715,048.68 2.36 billion 1,727
1900 STATE, DEPARTMENT OF 1,019,688,891.75 1.02 billion 129
7014 U.S. CUSTOMS AND BORDER PROTECTION 818,469,766.49 818.47 million 99
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 789,812,080.13 789.81 million 487
6920 FEDERAL AVIATION ADMINISTRATION 613,144,533.73 613.14 million 2,267
2050 INTERNAL REVENUE SERVICE 431,126,637.03 431.13 million 156
3600 VETERANS AFFAIRS, DEPARTMENT OF 308,342,130.84 308.34 million 97

Insight

Over the last 5 years, SCIENCE APPLICATIONS INTERNATIONAL CORPORATION’s obligations are concentrated in a small number of agencies, led by the Federal Acquisition Service at $4.86 billion. The Department of the Navy is the largest transaction source by award count at 7,468 awards and $4.06 billion, indicating a high-volume relationship alongside significant dollar value. The next largest obligations are spread across the Department of the Air Force ($2.90 billion), Department of the Army ($2.36 billion), and Department of State ($1.02 billion), with the remaining agencies each below $1.0 billion, suggesting a strong defense-heavy and moderately diversified federal customer base.

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 = '6XWA8'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 6,928,327,254.60 6.93 billion 2,054
541330 ENGINEERING SERVICES 5,397,479,206.36 5.40 billion 10,690
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 3,862,561,412.45 3.86 billion 1,583
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,243,276,112.07 1.24 billion 1,666
541519 OTHER COMPUTER RELATED SERVICES 655,759,711.63 655.76 million 483
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 605,661,097.13 605.66 million 284
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 429,749,500.54 429.75 million 829
335999 ALL OTHER MISCELLANEOUS ELECTRICAL EQUIPMENT AND COMPONENT MANUFACTURING 401,794,231.67 401.79 million 532
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 343,370,394.45 343.37 million 495
541513 COMPUTER FACILITIES MANAGEMENT SERVICES 160,675,477.29 160.68 million 206

Insight

Over the last 5 years, SCIENCE APPLICATIONS INTERNATIONAL CORPORATION’s obligations under CAGE 6XWA8 total $20.33 billion across 21,076 awards, with activity concentrated in a small set of professional and technical NAICS. The largest share is in 541512 Computer Systems Design Services at $6.93 billion, followed by 541330 Engineering Services at $5.40 billion and 541712 R&D in the physical, engineering, and life sciences at $3.86 billion; these three codes account for the majority of obligated dollars. Award volume is also heavily centered in 541330, which has 10,690 awards, indicating a broad base of lower-value actions in engineering services alongside higher-dollar IT and R&D work.

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 = '6XWA8'
        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 3,901,616,176.06 3.90 billion 3,675
2024 4,585,974,631.53 4.59 billion 4,753
2023 4,569,036,921.21 4.57 billion 4,002
2022 3,560,291,304.99 3.56 billion 4,233
2021 3,710,859,969.79 3.71 billion 4,413

Insight

Over the last 5 years, SCIENCE APPLICATIONS INTERNATIONAL CORPORATION obligated 20.33 billion across 21,076 awards, averaging about 964.5 thousand per award. Annual obligation levels were relatively stable in the 3.56 billion to 4.59 billion range, with a peak in 2024 at 4.59 billion and a slight decline to 3.90 billion in 2025. Award volume was highest in 2024 at 4,753 and lowest in 2025 at 3,675, indicating some year-to-year movement in transaction count but no sharp break in overall funding pattern.

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