This issue is resolved in vCenter Server 7.0 U3j, see Download Broadcom products and software
Workaround:
As a workaround, inventory objects can be exported to CSV using PowerCLI CmdLets.
Below are some examples:
File paths and inventory object names should be updated to match your environment.
Export all VMs in vCenter
Get-VM | Select Name, NumCpu, MemoryGB, VMHost, PowerState, ProvisionedSpaceGB, UsedSpaceGB | Export-Csv -Path C:\export\VM_Inventory.csv -NoTypeInformation
Export all ESXi hosts in vCenter
Get-VMHost | Select Name, ConnectionState, PowerState, NumCpu, Version | Export-Csv C:\export\Host_Inventory.csv -NoTypeInformation
Export all Datastores in vCenter
Get-Datastore | Select Name, State, FreeSpaceGB, CapacityGB | Export-Csv C:\export\Dastore_Inventory.csv -NoTypeInformation
Export all VMs in a specific cluster
Get-Cluster -Name "CLUSTER_NAME" | Get-VM | Select Name, NumCpu, MemoryGB, VMHost, PowerState, ProvisionedSpaceGB, UsedSpaceGB | Export-Csv -Path C:\export\VM_Cluster_Inventory.csv -NoTypeInformation
Export all ESXi hosts in a specific cluster
Get-Cluster -Name "CLUSTER_NAME" | Get-VMHost | Select Name, ConnectionState, PowerState, NumCpu, Version | Export-Csv -Path C:\export\Host_Cluster_Inventory.csv -NoTypeInformation
Export all Datastores on a specific host
Get-VMHost -Name "ESXI_HOST_NAME" | Get-Datastore | Select Name, State, FreeSpaceGB, CapacityGB | Export-Csv -Path C:\export\Datastore_Host_Inventory.csv -NoTypeInformation