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

Email notification- Pls Help

Former Member
0 Likes
564

Hello,

I want to implement email notification utility in my SAP system. I downloaded Domino 8 from IBM to connect SAP and lotus notes. Can anybody guide me if I am going in the right way or not? Also for connecting Outlook what sofware is used?

Regards,

Sujith

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
543

hi

Use work flow for this

SWDD (tcode)

or use FM

call function<b> 'SO_NEW_DOCUMENT_SEND_API1'</b>

exporting

document_data = wa_document_data

document_type = 'RAW'

put_in_outbox = 'X'

commit_work = 'X'

tables

object_header = it_object_header

object_content = it_object_content

receivers = it_receivers

exceptions

too_many_receivers = 1

document_not_sent = 2

document_type_not_exist = 3

operation_no_authorization = 4

parameter_error = 5

x_error = 6

enqueue_error = 7

others = 8.

endif.

Amit

Hello,

I want to implement email notification utility in my SAP system. I downloaded Domino 8 from IBM to connect SAP and lotus notes. Can anybody guide me if I am going in the right way or not? Also for connecting Outlook what sofware is used?

Regards,

Sujith

4 REPLIES 4
Read only

Former Member
0 Likes
543

Hi,

Am not sure about your way. Try using workflow.

Sharin.

Read only

Former Member
0 Likes
544

hi

Use work flow for this

SWDD (tcode)

or use FM

call function<b> 'SO_NEW_DOCUMENT_SEND_API1'</b>

exporting

document_data = wa_document_data

document_type = 'RAW'

put_in_outbox = 'X'

commit_work = 'X'

tables

object_header = it_object_header

object_content = it_object_content

receivers = it_receivers

exceptions

too_many_receivers = 1

document_not_sent = 2

document_type_not_exist = 3

operation_no_authorization = 4

parameter_error = 5

x_error = 6

enqueue_error = 7

others = 8.

endif.

Amit

Read only

Former Member
0 Likes
543

Hi,

see below function module May it will help your requirement.

'SO_NEW_DOCUMENT_ATT_SEND_API1'

Read only

Former Member
0 Likes
543

Hello Sujith,

Please refer to the following blog which has clear information as of how to configure your email in SAP and send a mail to from ABAP.

Regards

Indu