Federal Contractor

WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC Federal Contract Obligations (Last Year)

WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC recorded 80 federal award actions totaling $147.27 million in the last full year, almost all from the United States Mint.

In the last full year, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC (CAGE 4YNS6, UEI LCCMM1A56RP1) obligated $147,270,033.58 across 80 award actions, for an average action value of $1,840,875.41. The contract activity was concentrated at the United States Mint and aligned primarily with NAICS 331420, copper rolling, drawing, extruding, and alloying.

Generated at 03/21/2026

Analysis period: Last full year

Top-line figures reflect the last full year; NAICS totals may differ slightly from the overall total because of rounding and a small negative amount in NAICS 331491.

CAGE Code
4YNS6
UEI
LCCMM1A56RP1
Total Obligated
147.27 million
147,270,033.58
Award Actions
80
Average Action Value
1,840,875.41

About WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC federal contract activity

WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC (CAGE 4YNS6, UEI LCCMM1A56RP1) recorded 80 FPDS awards totaling $147.27 million in the last full year, for an average award value of $1.84 million. The vendor’s procurement profile is heavily concentrated, with nearly all obligated dollars captured in a single operating year and a single dominant customer relationship.

Agency mix and customer concentration

Award activity was entirely concentrated at the UNITED STATES MINT, which accounted for the full $147.27 million and all 80 awards in the analysis window. This indicates a highly centralized buyer relationship with no visible diversification across agencies in the reported period.

Industry profile based on NAICS activity

Contracting activity was dominated by NAICS 331420, Copper Rolling, Drawing, Extruding, and Alloying, which represented 76 awards and $147.34 million in obligations. NAICS 331491 appeared in only four awards and carried a small negative obligated value of $69.75 thousand, suggesting minor adjustment activity rather than a material separate workstream.

Annual contract trend over the analysis window

The annual trend shows all reported obligations in 2025, totaling $147.27 million across 80 awards. No other years appear in the analysis window, so the series does not indicate multi-year growth or decline patterns.

How to interpret this page

This summary is based on FPDS award records for the last full year associated with CAGE 4YNS6 and UEI LCCMM1A56RP1. Obligations, award counts, and NAICS allocations reflect the reported contract activity in the extracted dataset; negative obligated values are retained as reported.

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 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
2044 UNITED STATES MINT 147,270,033.58 147.27 million 80

Insight

WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC’s obligations in the last full year were fully concentrated within a single agency: the United States Mint accounted for 100% of the firm’s $147.27 million in obligated value. The vendor received 80 awards over the period, yielding an average award value of $1.84 million, which indicates a high volume of awards tied to one customer. This level of agency concentration suggests the vendor’s recent federal activity is entirely dependent on a single buying organization.

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 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
331420 COPPER ROLLING, DRAWING, EXTRUDING, AND ALLOYING 147,339,780.35 147.34 million 76
331491 NONFERROUS METAL (EXCEPT COPPER AND ALUMINUM) ROLLING, DRAWING, AND EXTRUDING -69,746.77 -69.75 thousand 4

Insight

WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC’s obligations in the last full year were overwhelmingly concentrated in NAICS 331420, Copper Rolling, Drawing, Extruding, and Alloying, which accounted for 76 of 80 awards and $147.34 million in obligated value. NAICS 331491, Nonferrous Metal (Except Copper and Aluminum) Rolling, Drawing, and Extruding, represented only 4 awards and a negligible net obligation of -$69.75 thousand, indicating minimal diversification outside the primary copper-related activity. Overall, the vendor’s FPDS activity is highly concentrated in a single NAICS, with limited secondary activity and no meaningful balance across other sectors.

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 1 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

Insight

During the last full year, WIELAND ROLLED PRODUCTS NORTH AMERICA, LLC (CAGE 4YNS6) recorded $147.27 million in obligated funding across 80 awards, for an average award value of $1.84 million. The annual activity is fully concentrated in FY2025, indicating no multi-year distribution within the 1-year window provided. This level of obligation volume across a relatively limited number of awards suggests a concentration of higher-value procurements rather than broad small-dollar activity.

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.