Not exactly what you are after, but you can setup a separate config just for the SNMP section and generate a report out of it
- Change NCM Settings > Config Minimum Length to 1 (as some of the devices can have just 1 community string)
- Create a new config type (say SNMP) (From NCM Settings > Config Types)
- Modify your device template file (C:\Program Files (x86)\SolarWinds\Orion\NCM\DeviceTypes) and provide the command to use for this config type
- Run an NCM job to download this config type of all devices
The easiest to spit out a consolidated "report" is probably run a direct SQL query (you can use the legacy report writer tool on the Orion server if you are running NCM v7.3)
SELECT TOP 1000 * FROM [dbo].[NCM_ConfigArchive] WHERE ConfigType='SNMP'
I think you will have to join on the NCM_IPAddress table to get IP address in your "report"
Hope that helps