During the last full year, BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. (CAGE 3L667, UEI LL86LYMYHK36) received $325,174,436.86 in federal obligations across 23 actions, for an average action value of $14,138,018.99. The Department of the Navy accounted for all obligated dollars, and most of the activity fell under NAICS 336414, Guided Missile and Space Vehicle Manufacturing.
Federal Contractor
BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. Federal Contract Obligations (Last Year)
BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. recorded $325.17 million in obligated contract actions across 23 awards in the last full year.
Agency, NAICS, and annual totals reflect the provided analysis window and may include actions with zero obligated dollars.
About BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. federal contract activity
BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. recorded 325.17 million in obligated contract value across 23 awards in the last full year, for an average award value of 14.14 million. The vendor is identified by CAGE 3L667 and UEI LL86LYMYHK36. The award profile is concentrated rather than diffuse, with one agency and one primary NAICS code accounting for nearly all obligated value.
Agency mix and customer concentration
The DEPT OF THE NAVY accounted for the full 325.17 million in obligated value and 17 of the 23 awards, making it the clear driver of vendor activity in the period. DCMA appears with 5 awards and the DEPT OF THE ARMY with 1 award, but both show 0.00 obligated value in the provided data. This indicates administrative or non-obligating activity outside the Navy-dominant spend base.
Industry profile based on NAICS activity
NAICS 336414, GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING, captured 325.17 million across 22 awards and represents the vendor’s core revenue stream in the period. NAICS 541330, ENGINEERING SERVICES, appears once with 0.00 obligated value. The mix is therefore highly concentrated in guided missile and space vehicle manufacturing, with only nominal diversification into engineering services.
Annual contract trend over the analysis window
The annual trend shows all recorded obligated value in 2025, totaling 325.17 million across 23 awards. No additional years appear in the analysis window, so the dataset supports only a single-year view rather than a multi-year growth assessment. Based on the provided figures, the vendor’s recent federal activity was materially weighted to one fiscal year.
How to interpret this page
This summary uses the supplied FPDS Query analysis window of Last full year and the vendor identifiers provided for BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. Obligated dollars, award counts, agency mix, NAICS mix, and annual trend are reported exactly from the supplied metrics without additional estimation. Zero-obligation entries are described as provided and no facts beyond the input data are inferred.
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 = '3L667'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 325,174,436.86 | 325.17 million | 17 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 5 |
| 2100 | DEPT OF THE ARMY | 0.00 | 0.00 | 1 |
Insight
Over the last full year, BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. received $325.17 million across 23 awards, with obligation highly concentrated in the DEPT OF THE NAVY. The Navy accounted for essentially all obligated dollars and 17 of the 23 awards, indicating a strong dependence on a single agency for funded activity. DCMA and the DEPT OF THE ARMY recorded awards in the period, but with $0 obligated, suggesting administrative or non-obligating actions rather than funded procurement volume.
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 = '3L667'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 325,174,436.86 | 325.17 million | 22 |
| 541330 | ENGINEERING SERVICES | 0.00 | 0.00 | 1 |
Insight
BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. received $325.17 million across 23 awards in the last full year, with average award value of $14.14 million. Obligations are overwhelmingly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $325.17 million and 22 of 23 awards. NAICS 541330, Engineering Services, appears only once and carries no obligated value, indicating minimal diversification across NAICS codes in this period.
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 = '3L667'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 325,174,436.86 | 325.17 million | 23 |
Insight
For the last full year, BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC. (CAGE 3L667) recorded $325.17 million in obligated value across 23 awards, for an average award value of about $14.14 million. With all observed obligations concentrated in a single year, this reflects a high-value, low-count award profile rather than a broad distribution across multiple years. The available 1-year window does not show year-to-year variation, so trend analysis is limited to the current annual level.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.