cancel
Showing results for 
Search instead for 
Did you mean: 

Email not sending

former_member472138
Active Contributor
0 Kudos

Details

IOException while sending message; nested exception is: java.io.FileNotFoundException: /usr/sap/LP0/portal/share/CustomerSetUpRequestForm.rtf (No such file or directory (errno:2))

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

use this.

FileWriter fw=new FileWriter(<destination Path in server>);

fw.write(<your data>);

This will creates Or writes to a file specified by destination Path

Regards

LakshmiNarayana

Answers (1)

Answers (1)

Former Member
0 Kudos

1.i hope you are giving the file path as

//usr//sap//LP0//portal//share//CustomerSetUpRequestForm.rtf with double //(escape characters)

2.second thing is the folder into which you writing this file should have enduser permission.so right click on the folder and share it for everyone

i think this resolves your problem

Message was edited by:

Armin Reichert