This page summarizes award number 0014 for agency 9700 over the last full year. The award shows 58 actions and net obligations of -1,553,350.38, with an average action value of -26,781.90.
Award Number
Award Number 9700 / 0014 Federal Contract Action Summary (Last Year)
Federal award number 0014 for agency 9700 shows 58 recorded actions in the last full year with total obligations of -1.55 million.
Amounts reflect the provided readable and exact obligated totals for the selected analysis window.
Overview
Award number 0014 under agency 9700 is associated with 58 actions in the last full year. The reported net obligated amount is -1,553,350.38, and the average action value is -26,781.90. These figures provide a compact view of activity and obligation flow for the selected period.
How to use this page
Use this page to review the award’s action count, total obligations, and average action value for the last full year. The figures can support basic procurement analysis, comparison with other awards, and review of the award’s recent transaction pattern.
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 = '0014'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 798,304.53 | 798.30 thousand | 26 |
| 97AK | DEFENSE INFORMATION SYSTEMS AGENCY (DISA) | 5,417.51 | 5.42 thousand | 1 |
| 1700 | DEPT OF THE NAVY | -135,094.16 | -135.09 thousand | 11 |
| 5700 | DEPT OF THE AIR FORCE | -392,495.86 | -392.50 thousand | 7 |
| 97JC | MISSILE DEFENSE AGENCY (MDA) | -397,480.01 | -397.48 thousand | 1 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -1,432,002.39 | -1.43 million | 12 |
Insight
Obligations for PIID 0014 over the past year are concentrated in DEPT OF THE ARMY, which accounts for 26 awards and $798.3 thousand in net obligations. Several other agencies show smaller positive activity, including DISA with one award and $5.4 thousand, while the remaining agencies reflect net deobligations, led by DCMA at -$1.43 million across 12 awards. Overall, the distribution is mixed, with positive obligations outweighed by larger downward adjustments across multiple defense components.
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 = '0014'
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 |
|---|---|---|---|---|
| JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC | 1MN13 | 4,347,669.69 | 4.35 million | 4 |
| LOCKHEED MARTIN CORPORATION | 64059 | 62,195.00 | 62.20 thousand | 1 |
| LEIDOS, INC. | 7LQ18 | 29,671.77 | 29.67 thousand | 1 |
| GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. | 0YJB5 | 7,104.00 | 7.10 thousand | 2 |
| SCIENCE APPLICATIONS INTERNATIONAL CORPORATION | 5UTE2 | 5,515.31 | 5.52 thousand | 2 |
| ULTISAT, INC. | 3H9E0 | 5,417.51 | 5.42 thousand | 1 |
| BAE SYSTEMS TECHNOLOGY SOLUTIONS & SERVICES INC. | 99789 | 0.00 | 0.00 | 1 |
| PARSONS GOVERNMENT SERVICES INC. | 1BVK6 | 0.00 | 0.00 | 1 |
| DCS CORPORATION | 1P418 | 0.00 | 0.00 | 1 |
| OCEANEERING INTERNATIONAL, INC | 1TVU1 | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID 0014 are highly concentrated in JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC, which accounts for $4.35 million across 4 awards and far exceeds all other vendors in the 1-year window. The remaining obligated amounts are dispersed across a small set of contractors, with LOCKHEED MARTIN CORPORATION at $62.20 thousand, LEIDOS, INC. at $29.67 thousand, and the next three vendors each below $8 thousand. Four vendors received awards with no obligated dollars, indicating multiple award actions in the period without recorded funding.
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 = '0014'
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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 4,054,625.18 | 4.05 million | 10 |
| 336419 | OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING | 62,195.00 | 62.20 thousand | 1 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 29,671.77 | 29.67 thousand | 1 |
| 517919 | ALL OTHER TELECOMMUNICATIONS | 5,417.51 | 5.42 thousand | 1 |
| 611710 | EDUCATIONAL SUPPORT SERVICES | 0.00 | 0.00 | 1 |
| 541310 | ARCHITECTURAL SERVICES | 0.00 | 0.00 | 1 |
| 541519 | OTHER COMPUTER RELATED SERVICES | 0.00 | 0.00 | 1 |
| 541512 | COMPUTER SYSTEMS DESIGN SERVICES | 0.00 | 0.00 | 1 |
| 562910 | REMEDIATION SERVICES | 0.00 | 0.00 | 3 |
| 333314 | OPTICAL INSTRUMENT AND LENS MANUFACTURING | 0.00 | 0.00 | 1 |
Insight
Award activity for PIID 0014 over the past year is heavily concentrated in NAICS 541330 (Engineering Services), which accounts for 10 awards and $4.05 million in obligations. All other obligated NAICS categories are small by comparison, led by NAICS 336419 at $62.20 thousand and NAICS 541611 at $29.67 thousand. Several additional NAICS codes have award counts but no recorded obligations, indicating a broader distribution of awards without corresponding outlays in this 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 = '0014'
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 |
|---|---|---|---|---|
| H935 | OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT | 4,347,669.69 | 4.35 million | 4 |
| 1420 | GUIDED MISSILE COMPONENTS | 62,195.00 | 62.20 thousand | 1 |
| R408 | SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT | 29,671.77 | 29.67 thousand | 1 |
| D316 | IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT | 5,417.51 | 5.42 thousand | 1 |
| Y1AA | CONSTRUCTION OF OFFICE BUILDINGS | 0.00 | 0.00 | 1 |
| J020 | MAINT/REPAIR/REBUILD OF EQUIPMENT- SHIP AND MARINE EQUIPMENT | 0.00 | 0.00 | 1 |
| R414 | SYSTEMS ENGINEERING SERVICES | 0.00 | 0.00 | 1 |
| D307 | IT AND TELECOM- IT STRATEGY AND ARCHITECTURE | 0.00 | 0.00 | 1 |
| AD93 | R&D- DEFENSE OTHER: OTHER (ADVANCED DEVELOPMENT) | 0.00 | 0.00 | 1 |
| F108 | ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION | 0.00 | 0.00 | 3 |
Insight
Obligations under PIID 0014 are highly concentrated in PSC H935, which accounts for 4.35 million across 4 awards and dominates the 1-year activity. The remaining obligated value is minimal and fragmented, with only small amounts in PSC 1420, R408, and D316. Several additional PSCs appear with awards but zero obligated value, indicating limited dollar execution across a broader set of service, technical, and construction categories.
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 = '0014'
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 | -1,553,350.38 | -1.55 million | 58 |
Insight
In 2025, award PIID 0014 for agency 9700 reflects a net obligated amount of -$1.55 million across 58 awards, indicating a negative funding position for the period. The obligation volume is distributed across a relatively high number of awards, suggesting the net decrease is spread across multiple actions rather than concentrated in a single award. With only one year in the window, no year-over-year trend can be assessed from the provided data.
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.