Award Number

Award Number 9700 / FA881113C0003 Federal Contract Action Summary (Last Year)

FPDS award number FA881113C0003 for agency ID 9700 shows last full year obligation activity totaling -$11.13 million across 2 actions.

This page summarizes procurement activity for award FA881113C0003 under agency ID 9700 over the last full year. The award recorded 2 actions with a net obligated value of -$11,134,881.57.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and may be negative when obligations were de-obligated or otherwise reduced.

Agency ID
9700
PIID
FA881113C0003
Type
Award
Total Obligated
-11.13 million
-11,134,881.57
Actions
2
Average Action Value
-5,567,440.79

Overview

The award number FA881113C0003 is associated with agency ID 9700 and shows activity in the last full year. Across 2 award actions, the total obligated amount was -$11,134,881.57, with an average action value of -$5,567,440.79.

How to use this page

Use this page to review the award-level obligation trend for FA881113C0003 and compare its action count with the net dollar value. The negative total indicates the award experienced a net reduction in obligated funding during the analysis window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'FA881113C0003'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -11,134,881.57 -11.13 million 2

Insight

Within the 1-year window for award FA881113C0003, obligations are concentrated entirely under DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), which accounts for all reported activity in this section. DCMA shows two awards with a combined net obligation of -$11.13 million, indicating a negative funding direction over the period. This concentration suggests the award’s recent obligation pattern is narrowly centered in a single agency relationship rather than distributed across multiple agencies.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'FA881113C0003'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
UNITED LAUNCH SERVICES, LLC 43HC6 -11,134,881.57 -11.13 million 2

Insight

Obligations for PIID FA881113C0003 over the 1-year window are fully concentrated with UNITED LAUNCH SERVICES, LLC (CAGE 43HC6). The vendor accounts for all reported activity in this section, with 2 awards and total obligated amount of -$11.13 million. The negative total obligated value indicates net deobligation or downward adjustment during the period.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'FA881113C0003'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION -11,134,881.57 -11.13 million 2

Insight

Obligations for this award are concentrated entirely in NAICS 481212, Nonscheduled Chartered Freight Air Transportation, with -$11.13 million obligated across 2 actions in the 1-year window. This indicates a highly concentrated spending profile within a single transportation category rather than a diversified NAICS mix. The negative obligated amount should be interpreted as a net downward adjustment or deobligation for this NAICS over the period.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'FA881113C0003'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH -11,134,881.57 -11.13 million 2

Insight

Obligations under PIID FA881113C0003 in the 1-year window are fully concentrated in PSC V126, with $11.13 million in net deobligations across 2 awards. This indicates a narrow PSC distribution and a transaction pattern dominated by reversals or downward adjustments rather than new positive obligations in this period. The negative obligated total is the key trend signal for this award.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'FA881113C0003'
    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 ASC
Year Total Obligated Readable Actions
2025 -11,134,881.57 -11.13 million 2

Insight

In the 1-year window, this award records $-11.13 million in total obligated amount in FY2025 across 2 awards, indicating a small number of transactions account for the full activity captured here. The negative obligated total should be interpreted as a de-obligation or downward adjustment rather than new spending. With only one year and two awards represented, no multi-year trend can be assessed from this view.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.