In the last full year, TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. received $712,935,604.61 in obligations across 49 actions, averaging $14,549,706.21 per action. Most activity came from the Department of the Army, with additional obligations from the Department of the Navy and a negative DCMA action offsetting part of the total.
Federal Contractor
TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. Federal Contract Obligations (Last Year)
TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. recorded $712.94 million in federal obligations across 49 award actions in the last full year, led by Department of the Army spending.
Agency, NAICS, and annual totals reflect the provided FPDS analysis window and may include negative obligation adjustments.
About TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. federal contract activity
TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. recorded 49 FPDS-observed awards in the last full year, with total obligations of $712.94 million and an average award value of $14.55 million. The vendor’s activity is concentrated in federal defense contracting, with procurement flowing primarily through the Department of the Army.
Agency mix and customer concentration
The Department of the Army accounted for nearly all obligations, totaling $706.23 million across 35 awards, or roughly 99% of the period’s total. The Department of the Navy added $12.88 million across 13 awards, while DCMA shows a single negative-obligation transaction of $6.18 million, which reduced net obligations in the period.
Industry profile based on NAICS activity
Contracting is dominated by NAICS 541330, Engineering Services, which represents $697.65 million across 27 awards and the clear core of the vendor’s award profile. NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, contributes a smaller but meaningful $15.29 million across 22 awards, indicating a secondary hardware- and systems-oriented line of business.
Annual contract trend over the analysis window
The annual trend shows $712.94 million in obligations across 49 awards in 2025, which is the full analysis window provided. With only one year in scope, the data support a current-period snapshot rather than a multi-year growth assessment.
How to interpret this page
This summary is based on FPDS award records associated with CAGE 0J6J5 and UEI HEZDP5MN11A3 for the last full year. Obligations are aggregated net of negative values, award counts reflect the number of recorded awards, and agency and NAICS shares are derived from the supplied totals without inferring activity outside the provided 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 = '0J6J5'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 706,227,137.80 | 706.23 million | 35 |
| 1700 | DEPT OF THE NAVY | 12,883,601.20 | 12.88 million | 13 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -6,175,134.39 | -6.18 million | 1 |
Insight
Over the last full year, TCOM, L.P. obligated $712.94 million across 49 awards, with an average award value of $14.55 million. Funding was highly concentrated in the DEPT OF THE ARMY, which accounted for $706.23 million and 35 awards, or nearly all recorded obligation volume. The DEPT OF THE NAVY contributed a much smaller $12.88 million across 13 awards, while DCMA shows a -$6.18 million net obligation in one award, indicating a downward adjustment or deobligation.
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 = '0J6J5'
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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 697,649,631.41 | 697.65 million | 27 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 15,285,973.20 | 15.29 million | 22 |
Insight
Over the last full year, TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. received $712.94 million across 49 awards, with obligations heavily concentrated in NAICS 541330, Engineering Services. This NAICS accounted for $697.65 million across 27 awards, or nearly all obligated dollars in the period. NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, represented the remaining $15.29 million across 22 awards, indicating a much smaller but still active second-line activity area.
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 = '0J6J5'
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 | 712,935,604.61 | 712.94 million | 49 |
Insight
Over the last full year, TCOM, LIMITED PARTNERSHIP A/K/A TCOM, L.P. received $712.94 million in obligated funding across 49 awards, for an average award value of $14.55 million. The annual total is fully concentrated in FY 2025, indicating all reported obligation activity in this window occurred in a single year. This pattern suggests a highly concentrated award profile rather than a multi-year distribution.
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.