cancel
Showing results for 
Search instead for 
Did you mean: 

E-mail send as Junk Mail

Former Member
0 Kudos

Hello Friends,

E-mail is sending as junk mail not a inbox mail when use 'SO_NEW_DOCUMENT_SEND_API1' function module.. What need to do to as inbox mail..

I do also have to send my SRM Url in the content.. but URL is displaying as text not hyperlink

How to write coding to change text to Hyperlink ( Say for example www.sdn.sap.com )

I have to write '<A href="http://www.sap.com/"</A>'. but when i in the mail this is displaying as '<A href="http://www.sap.com/"</A>'.

not www.sap.com.

Thanks,

John.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

<b>SCOT Transaction in the system needs to be configured to send external mail to other connected Systems.

Also, You can use the FM SO_OBJECT_SEND to send messages to another R/3 system.

You have to give the destination..

Ex..

CALL FUNCTION 'SO_OBJECT_SEND'

DESTINATION 'ANOTHER_R3_SYSTEM'</b>

<u><b>Try this link out...</b></u>

<b>

Hope this will help.

Please reward suitable points.

Regards

- Atul

former_member195032
Active Contributor
0 Kudos

Hi John,

Use parameter

CONSTANTS : ic_outbox_flag LIKE sonv-flag VALUE 'X'.

CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1' DESTINATION iv_rfcdes

EXPORTING

document_data = is_doc_param

document_type = ic_doctype

put_in_outbox = ic_outbox_flag

commit_work = 'X'

I hope this helps.

regards,nishant

Former Member
0 Kudos

Hello Nishant,

Thanks i'll do it tomorrow.. Do u have any idea how to change text as hyperlink..

I have to send www.sap.sdn.com as content in the mail but www.sap.sdn.com has display as a link not a text.. I think you understand my requirment..

waiting for ur reply..

John.