Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Mail not sent using SO_NEW_DOCUMENT_SEND_API1

Former Member
0 Likes
1,803

Hi,

I am using report RSCONN01 after the FM SO_NEW_DOCUMENT_SEND_API1 to send email.

Eg:

submit rsconn01 with mode = 'INT'
                with output = 'X'
                and return.

But this report gives a popup which is creating a problem.

Is there any way to suppress this popup or any other report to send emails.

Thanks.

Edited by: Thomas on Feb 24, 2009 10:04 AM

Edited by: Thomas on Feb 24, 2009 10:06 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,098

Hi,

i do it like this and don't get an popup.



  SUBMIT RSCONN01 WITH MODE   = 'INT'
                  WITH OUTPUT = ' '
                  AND  RETURN.


Regards, Dieter

4 REPLIES 4
Read only

Former Member
0 Likes
1,099

Hi,

i do it like this and don't get an popup.



  SUBMIT RSCONN01 WITH MODE   = 'INT'
                  WITH OUTPUT = ' '
                  AND  RETURN.


Regards, Dieter

Read only

Former Member
0 Likes
1,098

hi Thomas

use FM DB_COMMIT after calling SO_NEW_DOCUMENT_SEND_API1.also check the SCOT settings.

hope this helps

regards

Aakash Banga

Read only

0 Likes
1,098

Thanks Dieter Gröhn and Aakash.

The problem got solved.

I shuld hv tried this before.

Read only

Former Member
0 Likes
1,098

Hi Thomas,

What is the popup you are getting ?

Also for the function module SO_NEW_DOCUMENT_SEND_API1 the import parameter use

COMMIT_WORK = 'X'

Regards