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

Regarding SO_NEW_DOCUMENT_ATT_SEND_API1

Former Member
0 Likes
574

Hi Experts,

When i am executing the FM SO_NEW_DOCUMENT_ATT_SEND_API1 in my report .

SY-SUBRC is 0.

But the mail is not received by the reciepent .

Please let me know the problem ,how to proceed.

Regards

Vishnu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
529

Hi,

Check in TCode SOST wheather mail to be sent are there or not.

If mails are there then don't worry as mails used to come in queue till SOST and goes outside after some configurations in SMTP and SCOT.

So if mails are there in SOST then ABAPer's job is done, to make it go outside is BASIS consultant's job.

Hi Experts,

When i am executing the FM SO_NEW_DOCUMENT_ATT_SEND_API1 in my report .

SY-SUBRC is 0.

But the mail is not received by the reciepent .

Please let me know the problem ,how to proceed.

Regards

Vishnu

3 REPLIES 3
Read only

Former Member
0 Likes
529

Hi,

Please make sure you are filling the receivers table correctly as shown below.

tbl_maillist-com_type = 'INT'.

tbl_maillist-receiver = p_email.

tbl_maillist-rec_type = 'U'.

APPEND tbl_maillist.

You can check if the mail has been sent or not from SOST transaction.

Thanks,

Purnima

Read only

Former Member
0 Likes
530

Hi,

Check in TCode SOST wheather mail to be sent are there or not.

If mails are there then don't worry as mails used to come in queue till SOST and goes outside after some configurations in SMTP and SCOT.

So if mails are there in SOST then ABAPer's job is done, to make it go outside is BASIS consultant's job.

Read only

Former Member
0 Likes
529

Solved.