You need a way to list 'basic inventory received date' of all managed client machines.
ITMS 7.x, 8.x
You can use the following SQL code to get a report to list 'basic inventory received date' of all managed clients
The report might be required in the following scenarios, to make sure;
Copy the following code in SQL code section while creating a new report.
--- SQL to get basic inventory report
select vcx.Name, vcx.Domain, vcx.[IP Address], vcx.[User], vcx.[OS Name],
rus.ModifiedDate as 'Basic.Inventory.Received'
from ResourceUpdateSummary rus
inner join vComputerEx vcx on vcx.Guid = rus.ResourceGuid
where rus.InventoryClassGuid = 'C74002B6-C7B9-47BB-A5D6-3031AF73BB8D' --AeX AC Identification
and vcx.IsManaged = 1
order by rus.ModifiedDate
-- end of report.
Example results when ran directly from SQL Management Studio: