Thanks George,
Any luck?
I was finally able to get ahold of the people at Netism. They logged into my portal and setup a query, but it doesn't seem to be working. It returns the correct number of locations - but shows no information, nor point on the map. If you send me your private email address, I can send you login to the portal. Perhaps you can also get your modules working at the same time.
This is their querry:
select
XmodID as LocationID,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Address') as Address,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'City') as City,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Region') as State,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Zip') as Zip,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Country') as Country,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Latitude') as Latitude,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Longitude') as Longitude,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'C1Title') as Title,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Company') as Company,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'ContactEmail') as Email,
dbo.KB_XMod_ExtractFieldValue(instancedata, 'Phone1') as Phone
from kb_xmod_modules
where formid = 14
-------------------------------------
I ran it on the SQL Database. It returns only the [City] value [New York] from the dataset:
-------------------------------------
Please advise...
|