This page summarizes procurement activity for award HQ014717C0032 within Agency ID 9700 during the last full year. The record shows $731,933,083.49 in total obligations across 23 award actions, for an average action value of $31,823,177.54.
Award Number
Award Number 9700 / HQ014717C0032 Federal Contract Action Summary (Last Year)
Award number HQ014717C0032 for Agency ID 9700 shows 23 actions and $731.93 million in obligations over the last full year.
Values reflect the specified analysis window and may differ from other reporting periods or summaries.
Overview
Award HQ014717C0032 is the procurement identifier for this award record under Agency ID 9700. In the last full year, it accounted for $731,933,083.49 in obligated funds across 23 actions. The average action value was $31,823,177.54.
How to use this page
Use this page to review obligation volume and action frequency for award HQ014717C0032 within the selected analysis window. The figures provide a concise view of how activity was distributed across the 23 recorded actions. For comparisons, use the same window and award identifier across other FPDS queries.
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 = 'HQ014717C0032'
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 |
|---|---|---|---|---|
| 97JC | MISSILE DEFENSE AGENCY (MDA) | 731,933,083.49 | 731.93 million | 23 |
Insight
Over the past 1 year, obligations for PIID HQ014717C0032 are entirely concentrated in MISSILE DEFENSE AGENCY (MDA), which accounted for $731.93 million across 23 awards. This indicates a highly focused obligation profile with no other top-agency recipients listed in the provided data. The award activity is therefore concentrated within a single agency relationship rather than being broadly distributed.
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 = 'HQ014717C0032'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 64059 | 731,933,083.49 | 731.93 million | 23 |
Insight
Obligations for PIID HQ014717C0032 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 64059). In the 1-year window, this vendor accounted for 23 awards totaling $731.93 million, indicating a highly concentrated obligation profile with no evidence of vendor diversification in the provided data.
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 = 'HQ014717C0032'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 731,933,083.49 | 731.93 million | 23 |
Insight
In the 1-year window for PIID HQ014717C0032, obligations are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $731.93 million across 23 awards, indicating a highly focused award profile rather than a dispersed distribution across multiple industries. The concentration suggests the contract activity is centered in a single industrial classification with repeated award action within 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 = 'HQ014717C0032'
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 |
|---|---|---|---|---|
| 1410 | GUIDED MISSILES | 731,933,083.49 | 731.93 million | 23 |
Insight
Obligations for PIID HQ014717C0032 are concentrated in PSC 1410, Guided Missiles, which accounts for the full reported amount in the 1-year window. Across 23 awards, this category totals $731.93 million, indicating a highly concentrated spend profile with no other PSCs represented in the provided rows.
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 = 'HQ014717C0032'
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 | 731,933,083.49 | 731.93 million | 23 |
Insight
Over the 1-year window, this award shows $731.93 million in total obligated funding across 23 actions in FY 2025. The obligation profile is highly concentrated, with a large dollar value distributed across a relatively small number of recorded actions. This indicates a high-value award with limited action frequency during the period.
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.