Application Development 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: 

Email sending

Former Member
0 Kudos

Hi All,

I have written a program to send the mail. using

SO_DOCUMENT_SEND_API.

and after that i have written submit statement

Submit rsconn1.

When I execute is the email address does not have route from my id, it is giving a pop up by displaying a message cannot be sent with options continue, Inbox.

If i click on continue this will disapper.

How to avoid this dialog box.

Are there is any delay in sending the email from one user to another.

3 REPLIES 3

Former Member
0 Kudos

HI,

Check the below code and implement after calling the FM...

SUBMIT rsconn01 AND RETURN WITH mode = 'INT'.

CALL FUNCTION 'SO_DEQUEUE_UPDATE_LOCKS'.

Rgds,

Bujji

Former Member
0 Kudos

Hi,

Pls go thru the link which details the solution to your issue.

Warm Regards

R Adarsh

former_member188685
Active Contributor
0 Kudos

Read the documentation of the function..

SO_DOCUMENT_SEND_API1

after the fm call , check the sy-subrc

if sy-subrc eq 0.
  SUBMIT rsconn01 WITH mode = 'INT'
                WITH output = 'X'
                AND RETURN.
endif.