Federal Contractor

DMS PHARMACEUTICAL GROUP INC. Federal Contract Obligations (Last Year)

DMS PHARMACEUTICAL GROUP INC. (CAGE 1UNB0, UEI PX72BSBQTKJ3) recorded 283.98 million in federal obligations across 39,489 actions in the last full year.

Nearly all of the vendor's obligations were awarded by the Defense Logistics Agency, indicating a highly concentrated federal customer base. Activity was led by NAICS 424210, Drugs and Druggists' Sundries Merchant Wholesalers, with additional obligations in medicinal and botanical manufacturing and pharmaceutical preparation manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on readable obligation totals, award counts, and NAICS and agency breakdowns provided.

CAGE Code
1UNB0
UEI
PX72BSBQTKJ3
Total Obligated
283.98 million
283,976,616.24
Award Actions
39,489
Average Action Value
7,191.28

About DMS PHARMACEUTICAL GROUP INC. federal contract activity

DMS PHARMACEUTICAL GROUP INC. (CAGE 1UNB0, UEI PX72BSBQTKJ3) recorded $283.98 million in obligations across 39,489 awards in the last full year, for an average award value of $7,191.28. The volume profile indicates a high-frequency procurement relationship dominated by many small-dollar transactions rather than a small number of large awards.

Agency mix and customer concentration

Award activity was concentrated entirely within the Defense Logistics Agency, which accounted for the full $283.98 million and all 39,489 awards in the analysis window. This level of concentration indicates a single-agency dependence profile with no visible diversification across other contracting organizations in the provided data.

Industry profile based on NAICS activity

The vendor’s obligations were led by NAICS 424210, Drugs and Druggists' Sundries Merchant Wholesalers, at $268.08 million across 20,805 awards, making it the primary commercial channel. Smaller portions were associated with NAICS 325411 and 325412, while NAICS 423450 represented only a marginal share, suggesting the contract base is overwhelmingly aligned to pharmaceutical wholesale activity with limited ancillary equipment supply work.

Annual contract trend over the analysis window

The annual trend shows all reported obligations occurring in 2025, totaling $283.98 million across 39,489 awards. Because only one year is present in the supplied window, the data supports a snapshot assessment rather than a multi-year growth or decline analysis.

How to interpret this page

This summary is based only on the FPDS Query inputs provided for the last full year and reflects obligated dollars and award counts as reported. Agency, NAICS, and trend statements are limited to the supplied aggregates; no additional records, filters, or inferred relationships were 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 = '1UNB0'
        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
97AS DEFENSE LOGISTICS AGENCY 283,976,616.24 283.98 million 39,489

Insight

During the last full year, DMS PHARMACEUTICAL GROUP INC. (CAGE 1UNB0) received all reported obligations from the Defense Logistics Agency, totaling $283.98 million across 39,489 awards. This indicates an extremely concentrated agency profile, with no diversification across other agencies in the provided period. The average award value was $7,191.28, suggesting a high-volume, relatively low-dollar transaction pattern centered on DLA activity.

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 = '1UNB0'
        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
424210 DRUGS AND DRUGGISTS' SUNDRIES MERCHANT WHOLESALERS 268,081,357.10 268.08 million 20,805
325411 MEDICINAL AND BOTANICAL MANUFACTURING 12,136,798.15 12.14 million 4,957
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 3,548,139.41 3.55 million 13,721
423450 MEDICAL, DENTAL, AND HOSPITAL EQUIPMENT AND SUPPLIES MERCHANT WHOLESALERS 210,321.58 210.32 thousand 6

Insight

DMS PHARMACEUTICAL GROUP INC. obligated 283.98 million across 39,489 awards in the last full year, with activity heavily concentrated in NAICS 424210, DRUGS AND DRUGGISTS' SUNDRIES MERCHANT WHOLESALERS, which accounts for 268.08 million and 20,805 awards. Secondary obligations were much smaller in NAICS 325411, MEDICINAL AND BOTANICAL MANUFACTURING, at 12.14 million across 4,957 awards, and NAICS 325412, PHARMACEUTICAL PREPARATION MANUFACTURING, at 3.55 million across 13,721 awards. NAICS 423450, MEDICAL, DENTAL, AND HOSPITAL EQUIPMENT AND SUPPLIES MERCHANT WHOLESALERS, was immaterial at 210.32 thousand across 6 awards, indicating a highly concentrated vendor profile centered on pharmaceutical wholesale activity.

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 = '1UNB0'
        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 283,976,616.24 283.98 million 39,489

Insight

Over the last full year, DMS PHARMACEUTICAL GROUP INC. (CAGE 1UNB0) recorded $283.98 million in obligated value across 39,489 awards, averaging $7,191.28 per award. The activity is highly distributed across a large number of actions, indicating a high-volume, low-dollar award pattern rather than concentration in a small number of large obligations. With only one year in scope, no year-over-year trend can be assessed from the available data.

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.