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

Hi

Former Member
0 Likes
431

How can we send a mail to the user intimating him that his report/BDC is completed in background?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
412

Hi,

use tcodes

SO02X

Regards,

V.Balaji

Reward if Usefull...

How can we send a mail to the user intimating him that his report/BDC is completed in background?

3 REPLIES 3
Read only

Former Member
0 Likes
412

Check this out ... Hope it helps

http://www.sapdev.co.uk/reporting/email/email_mbody.htm

Regards,

Santosh

Read only

Former Member
0 Likes
412

Hi...

You can use FUNCTION RS_SEND_MAIL_FOR_SPOOLLIST

If Unix is being used, you may send a report to any internet mail with the following:

REPORT ZSNDMAIL .

DATA: COMND(200) type c.

DATA: RESULT(200) type c occurs 100 with header line.

PARAMETERS: FILE(60) type c lower case default '/sapdata/sd_outbound/testmail.dat'.

PARAMETERS: SUBJECT(60) type c lower case.

PARAMETERS: EMAIL(60) type c lower case.

INITIALIZATION.

TRANSLATE EMAIL TO LOWER CASE.

START-OF-SELECTION.

TRANSLATE EMAIL TO LOWER CASE.

CONCATENATE 'cat' FILE '| elm -s "' subject '"' email into comnd seperated by space.

CALL 'SYSTEM' ID 'COMMAND' FIELD comnd 'TAB' FIELD UNIX_RESULTS-SYS.

Loop at Results.

write: /1 results.

endloop

end-of-selection.

Regards

Chinni

Read only

Former Member
0 Likes
413

Hi,

use tcodes

SO02X

Regards,

V.Balaji

Reward if Usefull...