[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

01/02/2006 at 08:00PM PST, ID: 21681682
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.6

is a mail merge main document.  Word cannot find its data source

Asked by NoahVail in Miscellaneous Software

Tags: word, find, cannot, data, merge

I've run into this problem more than once.  The exact solution for us hasn't been posted on the net.  Close, but not a fix.

After a night, I found the answer for our version of the issue.

In my case, Terminal Services Users are getting these errors while running a Data Merge in Word 2003.
The document was recieving the merged data from another server on our LAN.

I've also had this problem in Word 2002.  The terminal server is Server 2003 in both cases.

The solution is to add the (name or IP of the) remote data server to the Internet Properties>Security>Trusted Sites>Sites  
list in the format; "file://server" with your server name or IP address replacing server, and no quotes.
(I have included this in the script below, if you'd rather script it instead)


Sometimes the error is preceded by another error saying....
Opening this document will run the following SQL command:
SELECT * FROM H:\HDS\BLAH\BLAHBLAH\BLAH\SOMETHING.DLW
Data from your database will be placed in the document.  Do you want to continue?

That requires a reg fix that I'll post below in script form.  The reason I use a script is that some of these reg entries need to be made while logged in as that user, and I don't know a way to edit the HKCU key of a user who isn't logged in.  Since I have a number of users I wrote the script and set it as their login script.

Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Word\Options\SQLSecurityCheck", "00000000", "REG_DWORD"
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Word\Options\CalcDataFieldOnOpen", "00000001", "REG_DWORD"
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\Your_Server_Name\*", "00000001", "REG_DWORD"
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\Your_Server_Name\file", "00000002", "REG_DWORD"

Cut and past the above (including quotes) into a .vbs file.

This applies to Word 2003.  If you're using Word XP / 2002, then change the 11.0 to 10.0 .  Also, replace Your_Server_Name in the last 2 keys with the name of your server.  
Since both issues seem to come together, I normally use the entire script.

To setup a login script for terminal services users, view the MS document here....
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q315245

Hope this helps someone

NV
[+][-]01/02/06 09:49 PM, ID: 15596482

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Miscellaneous Software
Tags: word, find, cannot, data, merge
Sign Up Now!
Solution Provided By: Netminder
Participating Experts: 1
Solution Grade: B
 
 
 
Loading Advertisement...
20091111-EE-VQP-91