Over the last 10 years, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC recorded $1.92 billion in obligated federal awards across 616 actions, with an average action value of $3.12 million. The United States Mint accounted for all reported obligations in this window, and most spending was concentrated in NAICS 331420 for copper rolling, drawing, extruding, and alloying.
Federal Contractor
WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC Federal Contract Obligations (Last 10 Years)
Federal procurement profile for WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC (CAGE 4YNS6, UEI LCCMM1A56RP1) covering obligations, awards, agencies, NAICS codes, and annual trends over the last 10 years.
Annual figures shown here are based on the provided 10-year analysis window and reflect obligated amounts by fiscal year, agency, and NAICS code.
About WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC federal contract activity
WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC (CAGE 4YNS6, UEI LCCMM1A56RP1) recorded 616 FPDS awards over the last 10 years, with total obligations of 1.92 billion and an average award value of 3.12 million. The award profile indicates a high-dollar, recurring procurement relationship rather than a fragmented, low-value customer base.
Agency mix and customer concentration
The vendor’s federal business is fully concentrated with the UNITED STATES MINT, which accounts for the entire 1.92 billion in obligated value across all 616 awards. This agency concentration suggests a specialized supply relationship with a single federal buyer rather than a diversified agency footprint.
Industry profile based on NAICS activity
Activity is dominated by NAICS 331420, COPPER ROLLING, DRAWING, EXTRUDING, AND ALLOYING, which represents 1.82 billion and 517 awards. NAICS 331491, NONFERROUS METAL (EXCEPT COPPER AND ALUMINUM) ROLLING, DRAWING, AND EXTRUDING, contributes the remaining 98.64 million across 99 awards, indicating a procurement profile centered on rolled nonferrous metal products.
Annual contract trend over the analysis window
Annual obligations in the period shown ranged from 123.73 million in 2024 to 345.18 million in 2022, with 2025 currently at 147.27 million across 80 awards. After a peak in 2022, spending remained elevated in 2023 and 2021 and then declined in 2024 before rebounding in the current year.
How to interpret this page
This summary is based on FPDS awards associated with CAGE 4YNS6 and UEI LCCMM1A56RP1 over the last 10 years. Totals, counts, and averages reflect the provided obligation data by agency, NAICS code, and fiscal year; figures are reported as supplied and should be interpreted within the stated analysis window.
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 = '4YNS6'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 2044 | UNITED STATES MINT | 1,921,519,539.86 | 1.92 billion | 616 |
Insight
Over the last 10 years, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC’s FPDS obligations are fully concentrated with the United States Mint, which accounts for the full $1.92 billion obligated across 616 awards. This indicates a highly concentrated agency relationship with no observable diversification across other federal agencies in the provided data. The average award value of about $3.12 million suggests repeated award activity at a moderate scale rather than dependence on a small number of exceptionally large awards.
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 = '4YNS6'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 331420 | COPPER ROLLING, DRAWING, EXTRUDING, AND ALLOYING | 1,822,876,483.94 | 1.82 billion | 517 |
| 331491 | NONFERROUS METAL (EXCEPT COPPER AND ALUMINUM) ROLLING, DRAWING, AND EXTRUDING | 98,643,055.92 | 98.64 million | 99 |
Insight
Over the last 10 years, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC has received $1.92 billion across 616 awards, with obligations heavily concentrated in NAICS 331420, Copper Rolling, Drawing, Extruding, and Alloying. That NAICS accounts for $1.82 billion and 517 awards, or the clear majority of both obligated dollars and award volume. The remaining activity is concentrated in NAICS 331491, Nonferrous Metal (Except Copper and Aluminum) Rolling, Drawing, and Extruding, with $98.64 million across 99 awards, indicating limited diversification beyond the core copper rolling category.
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 = '4YNS6'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 147,270,033.58 | 147.27 million | 80 |
| 2024 | 123,726,913.52 | 123.73 million | 34 |
| 2023 | 315,221,126.15 | 315.22 million | 46 |
| 2022 | 345,177,924.42 | 345.18 million | 61 |
| 2021 | 319,866,501.46 | 319.87 million | 64 |
| 2020 | 224,038,620.62 | 224.04 million | 83 |
| 2019 | 145,356,662.27 | 145.36 million | 67 |
| 2018 | 170,341,546.50 | 170.34 million | 97 |
| 2017 | 130,520,211.34 | 130.52 million | 84 |
Insight
Over the last 10 years, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC received 1.92 billion across 616 awards, with annual obligations concentrated in 2021-2023, peaking at 345.18 million in 2022. Award volume was highest in 2018 and 2020, but obligation value was highest during 2021-2023, indicating larger awards in those years rather than greater transaction counts. Obligations declined in 2024 to 123.73 million, then increased modestly in 2025 to 147.27 million, remaining below the 2021-2023 peak range.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.