Reply
 
Thread Tools Display Modes
  #1   Report Post  
Srinivasan.B
 
Posts: n/a
Default Mail Merge issue with Word 2003

1) We print communication letter to customers using Mail merge
2) Our Application based Oracle and Forms6i
3) It was working fine until Windows upgraded with Word 2003
4) With Word 2003, Letter is not printed. Only Data source coming out, Mail
merge
didn't happen.
5) Please suggest the solution such way that it works with both versions.
  #2   Report Post  
Graham Mayor
 
Posts: n/a
Default

Mail merge was completely revised after Word 2000.
http://www.gmayor.com/mail_merge_lab...th_word_xp.htm explains how to
get it back to near what you are used to - especially see the Excel data
section which bears similar issues. If you have a custom macro drive
application then it is going to have to be revised to take account of the
changes and is unlikely to work in both versions.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Srinivasan.B wrote:
1) We print communication letter to customers using Mail merge
2) Our Application based Oracle and Forms6i
3) It was working fine until Windows upgraded with Word 2003
4) With Word 2003, Letter is not printed. Only Data source coming
out, Mail merge
didn't happen.
5) Please suggest the solution such way that it works with both
versions.



  #3   Report Post  
Srinivasan.B
 
Posts: n/a
Default

Hi,

Let me explain the scenario clearly so that the cause of the error is clear.

We are invoking this from a Developer 2000 Application written in PL/SQL.
The code to do the same is reproduced below.

--open the data source

APPLICATION := OLE2.CREATE_OBJ('Word.Basic');
-- Open the mail merge data source document
OLE2.SET_PROPERTY(application, 'Visible', 'False');
ARGS:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(ARGS, M_DS_PATH);
OLE2.INVOKE(APPLICATION, 'FileOpen', ARGS);
OLE2.DESTROY_ARGLIST(ARGS);


--invoke the application to show the document
ARGS:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(ARGS, M_SRC_FILE_PATH||'\'||M_RS_REPORT_NAME);
OLE2.INVOKE(APPLICATION, 'FileOpen', ARGS);
OLE2.DESTROY_ARGLIST(ARGS);

-- Perform the mail merge to create the merged document
OLE2.INVOKE(APPLICATION,'MailMergeToDoc');

We would like to know why this fails in Word 2003 whereas it works in Word
2000. Is there any repository which explains the changes done to Word 2003
w.r.t Mail Merge.

Thanks and regards,

Srinivasan

"Graham Mayor" wrote:

Mail merge was completely revised after Word 2000.
http://www.gmayor.com/mail_merge_lab...th_word_xp.htm explains how to
get it back to near what you are used to - especially see the Excel data
section which bears similar issues. If you have a custom macro drive
application then it is going to have to be revised to take account of the
changes and is unlikely to work in both versions.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Srinivasan.B wrote:
1) We print communication letter to customers using Mail merge
2) Our Application based Oracle and Forms6i
3) It was working fine until Windows upgraded with Word 2003
4) With Word 2003, Letter is not printed. Only Data source coming
out, Mail merge
didn't happen.
5) Please suggest the solution such way that it works with both
versions.




  #4   Report Post  
Peter Jamieson
 
Posts: n/a
Default

I suspect that this problem occurs for one of the following three reasons:
a. changes in security - see
http://support.microsoft.com/default...b;en-us;825765 . In essence,
when you open a merge document programmatically, the connection to the data
source usually fails, and that will be without warning if the error is not
trapped
b. changes in the way Word connects to data sources - specifically, there
is an additional parameter in OpenDataSource calls that you have to use if
you want to use the older Word 2000 methods. (Actually I doubt that this is
relevant in this case unless you are connecting to the data source
programmatically)
c. (maybe) changes to Word 2003 related to the way old WordBasic routines
are executed. I am not aware of any such changes but it would not surprise
me if they existed.

Peter Jamieson

"Srinivasan.B" wrote in message
...
Hi,

Let me explain the scenario clearly so that the cause of the error is
clear.

We are invoking this from a Developer 2000 Application written in PL/SQL.
The code to do the same is reproduced below.

--open the data source

APPLICATION := OLE2.CREATE_OBJ('Word.Basic');
-- Open the mail merge data source document
OLE2.SET_PROPERTY(application, 'Visible', 'False');
ARGS:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(ARGS, M_DS_PATH);
OLE2.INVOKE(APPLICATION, 'FileOpen', ARGS);
OLE2.DESTROY_ARGLIST(ARGS);


--invoke the application to show the document
ARGS:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(ARGS, M_SRC_FILE_PATH||'\'||M_RS_REPORT_NAME);
OLE2.INVOKE(APPLICATION, 'FileOpen', ARGS);
OLE2.DESTROY_ARGLIST(ARGS);

-- Perform the mail merge to create the merged document
OLE2.INVOKE(APPLICATION,'MailMergeToDoc');

We would like to know why this fails in Word 2003 whereas it works in Word
2000. Is there any repository which explains the changes done to Word 2003
w.r.t Mail Merge.

Thanks and regards,

Srinivasan

"Graham Mayor" wrote:

Mail merge was completely revised after Word 2000.
http://www.gmayor.com/mail_merge_lab...th_word_xp.htm explains how to
get it back to near what you are used to - especially see the Excel data
section which bears similar issues. If you have a custom macro drive
application then it is going to have to be revised to take account of the
changes and is unlikely to work in both versions.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Srinivasan.B wrote:
1) We print communication letter to customers using Mail merge
2) Our Application based Oracle and Forms6i
3) It was working fine until Windows upgraded with Word 2003
4) With Word 2003, Letter is not printed. Only Data source coming
out, Mail merge
didn't happen.
5) Please suggest the solution such way that it works with both
versions.






  #5   Report Post  
klith2003 klith2003 is offline
Junior Member
 
Posts: 1
Smile

have you finally found a solution to this issue because I 'm facing the same problem.


  #6   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP
 
Posts: n/a
Default Mail Merge issue with Word 2003

What was the problem?

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"klith2003" wrote in message
...

have you finally found a solution to this issue because I 'm facing the
same problem.


--
klith2003



  #7   Report Post  
Posted to microsoft.public.word.mailmerge.fields
eufemia eufemia is offline
external usenet poster
 
Posts: 1
Default Mail Merge issue with Word 2003


I 'm facing the same problem.
Any Soluction???


--
eufemia
------------------------------------------------------------------------
eufemia's Profile: http://www.officehelp.in/member.php?userid=4829
View this thread: http://www.officehelp.in/showthread.php?t=554118

Posted from - http://www.officehelp.in

  #8   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Mail Merge issue with Word 2003

The same problem probably means something to you, but it does not to me and
probably does not to anyone else who frequents these newsgroups.

Tell us what it is and we will try and help.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"eufemia" wrote in message
...

I 'm facing the same problem.
Any Soluction???


--
eufemia
------------------------------------------------------------------------
eufemia's Profile: http://www.officehelp.in/member.php?userid=4829
View this thread: http://www.officehelp.in/showthread.php?t=554118

Posted from - http://www.officehelp.in



  #9   Report Post  
Posted to microsoft.public.word.mailmerge.fields
eufemia eufemia is offline
external usenet poster
 
Posts: 1
Default Mail Merge issue with Word 2003


Well, the next function was 100% in oracle form6i with word 2000 and the
same function does not work with word 2003!

....
application:=OLE2.CREATE_OBJ('Word.Basic');

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Fields.doc');
OLE2.INVOKE(application, 'FileOpen', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');

FOR CL_REC IN C1 LOOP

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.NAME);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.ADDRESS);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.LOCAL);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_CODE);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_CODE_EXT);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_DESCRIPTION);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.MOVIE);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.CATEGORY);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

END LOOP;

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Mask.doc');
OLE2.INVOKE(application, 'FileOpen', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'MailMergeToDoc');

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Mail_Out.doc');
OLE2.INVOKE(application, 'FileSaveAs', args);
OLE2.DESTROY_ARGLIST(args);

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 2);
OLE2.INVOKE(application, 'FileCloseAll', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'AppClose');
OLE2.RELEASE_OBJ(application);
...

The file 'Fields.doc' is a word doc with tables that is filled with
data.
The file 'Mask.doc' is a template word doc with fields connected to
'Fields.doc' to do the merge.
The file 'Mail_Out.doc' is suposed to be the mailing itself. but with
word2003 this 'Mail_Out.doc' only have the template and the name of the
filds that suposed to be merged, withou the data from merge.

Thak's for your answer.


--
eufemia
------------------------------------------------------------------------
eufemia's Profile: http://www.officehelp.in/member.php?userid=4829
View this thread: http://www.officehelp.in/showthread.php?t=554118

Posted from - http://www.officehelp.in

  #10   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default Mail Merge issue with Word 2003

The chances are that with Word 2003 you need to take account of the
following article:

http://support.microsoft.com/kb/825765/en-us

Although there could also be an issue with the use of the Word.Basic object
and you might need to change your code to use the Word.Application object,
I'd try making the registry modification described in the article on a test
system first, to see if that's enough.

Peter Jamieson

"eufemia" wrote in message
...

Well, the next function was 100% in oracle form6i with word 2000 and the
same function does not work with word 2003!

...
application:=OLE2.CREATE_OBJ('Word.Basic');

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Fields.doc');
OLE2.INVOKE(application, 'FileOpen', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');
OLE2.INVOKE(application, 'NextCell');

FOR CL_REC IN C1 LOOP

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.NAME);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.ADDRESS);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.LOCAL);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_CODE);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_CODE_EXT);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.POST_DESCRIPTION);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.MOVIE);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'NextCell');
args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, CL_REC.CATEGORY);
OLE2.INVOKE(application, 'Insert', args);
OLE2.DESTROY_ARGLIST(args);

END LOOP;

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Mask.doc');
OLE2.INVOKE(application, 'FileOpen', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'MailMergeToDoc');

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 'Mail_Out.doc');
OLE2.INVOKE(application, 'FileSaveAs', args);
OLE2.DESTROY_ARGLIST(args);

args:=OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args, 2);
OLE2.INVOKE(application, 'FileCloseAll', args);
OLE2.DESTROY_ARGLIST(args);

OLE2.INVOKE(application, 'AppClose');
OLE2.RELEASE_OBJ(application);
..

The file 'Fields.doc' is a word doc with tables that is filled with
data.
The file 'Mask.doc' is a template word doc with fields connected to
'Fields.doc' to do the merge.
The file 'Mail_Out.doc' is suposed to be the mailing itself. but with
word2003 this 'Mail_Out.doc' only have the template and the name of the
filds that suposed to be merged, withou the data from merge.

Thak's for your answer.


--
eufemia
------------------------------------------------------------------------
eufemia's Profile: http://www.officehelp.in/member.php?userid=4829
View this thread: http://www.officehelp.in/showthread.php?t=554118

Posted from - http://www.officehelp.in



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
mail merge hyperlinks in Word 2003 M Mailmerge 1 April 13th 05 11:35 AM
mail merge hyperlinks in Word 2003 M Mailmerge 0 April 12th 05 10:16 PM
Mail Merge in Word 2003 was easier to use; please allow 2003 to u. Old Guy Mailmerge 2 April 6th 05 12:51 PM
Specific Email Merge w/ Specific Attachements Mark B Mailmerge 9 February 21st 05 05:10 AM
Mail Merge Problem w/ MS Word 2000 pkampa(removethis)@optonline.net Mailmerge 2 December 28th 04 08:51 PM


All times are GMT +1. The time now is 07:46 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"