In the last full year, RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG recorded 14 award actions with total obligations of 504.08 million. The Department of the Navy accounted for all reported obligations, with most funding under NAICS 336414 for guided missile and space vehicle manufacturing.
Federal Contractor
RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG Federal Contract Obligations (Last Year)
Federal procurement profile for RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG (CAGE C7399, UEI YMYQQQBNG2K5) covering obligations in the last full year.
Amounts reflect obligated dollars reported for the selected analysis window and may include multiple actions within the same award.
About RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG federal contract activity
RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG (CAGE C7399, UEI YMYQQQBNG2K5) recorded $504.08 million in obligations across 14 awards in the last full year, with an average award value of $36.01 million. The vendor’s activity is highly concentrated, indicating a small number of high-value procurements rather than broad transaction volume.
Agency mix and customer concentration
All obligated spending in the analysis window came from the Department of the Navy, which accounted for the full $504.08 million across 14 awards. This single-agency concentration suggests a tightly focused relationship with one federal customer rather than a diversified agency base.
Industry profile based on NAICS activity
The vendor’s spending profile is dominated by NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which represented $500.51 million and 7 awards. The remaining obligation base was much smaller and spread across NAICS 334412, 333618, 334511, and 335313, indicating limited but varied support activity outside the core missile and space vehicle manufacturing category.
Annual contract trend over the analysis window
The annual trend data shows all recorded obligations and awards in 2025, totaling $504.08 million across 14 awards. With no activity shown in other years within the analysis window, the available data indicates a single-year concentration rather than a multi-year spending pattern.
How to interpret this page
This summary is based on FPDS-observed obligations for the last full year and is organized by vendor identifiers, awarding agency, NAICS code, and annual totals. Metrics reflect obligated dollars and award counts as reported in the provided dataset; no additional inference or external data was used.
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 = 'C7399'
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 | 504,079,152.06 | 504.08 million | 14 |
Insight
During the last full year, RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG’s obligations were fully concentrated within a single agency: the Department of the Navy. The Navy accounted for the entire $504.08 million obligated across 14 awards, indicating complete agency concentration in the vendor’s federal portfolio for this period. The average award value was $36.01 million, which suggests relatively large individual obligations within that single-agency relationship.
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 = 'C7399'
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 | 500,512,490.06 | 500.51 million | 7 |
| 334412 | BARE PRINTED CIRCUIT BOARD MANUFACTURING | 2,400,532.00 | 2.40 million | 3 |
| 333618 | OTHER ENGINE EQUIPMENT MANUFACTURING | 735,000.00 | 735.00 thousand | 1 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 221,153.00 | 221.15 thousand | 1 |
| 335313 | SWITCHGEAR AND SWITCHBOARD APPARATUS MANUFACTURING | 153,477.00 | 153.48 thousand | 1 |
| 332919 | OTHER METAL VALVE AND PIPE FITTING MANUFACTURING | 56,500.00 | 56.50 thousand | 1 |
Insight
Over the last full year, obligations for RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG (CAGE C7399) were highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounted for 500.51 million of 504.08 million total obligated, or about 99.3%, across 7 of 14 awards. The remaining obligation was distributed across five NAICS codes, led by NAICS 334412 at 2.40 million across 3 awards, with all other NAICS categories each contributing less than 1 million and only one award apiece. This pattern indicates a narrow procurement profile centered on a single aerospace/defense manufacturing code with limited secondary activity in related manufacturing categories.
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 = 'C7399'
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 | 504,079,152.06 | 504.08 million | 14 |
Insight
In the last full year, RAM-SYSTEM GESELLSCHAFT MIT BESCHRANKTER HAFTUNG (CAGE C7399) recorded 14 awards totaling $504.08 million, for an average award value of $36.01 million. The annual activity is fully concentrated in 2025 within the 1-year window, indicating a single-period funding profile rather than a multi-year trend. This level of obligation is concentrated across a relatively small number of awards, suggesting material award size rather than high transaction volume.
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.