2010 Apr 08 10:27 AM
Dear Experts,
I have an internal table with many lines, I am trying to transfer them to unix system (Telnet) through Function Module FTP_R3_TO_SERVER and its transferring well but the only problem is the new lines are not new rows but they are just beside the first row as given below:
Line1 Line2 Line3.
What I require is
Line1
Line2
Line3
Regards
ABAPPer
2010 Apr 08 3:07 PM
Hi sap abaper
it depend up on how you are writing the Code... Check your code what values you are passing to parameter
text in the Fm FTP_R3_TO_SERVER .
your sap code >>??? let see where are you writing wrong...
Thanks
Ramesh
2010 Apr 08 3:07 PM
Hi sap abaper
it depend up on how you are writing the Code... Check your code what values you are passing to parameter
text in the Fm FTP_R3_TO_SERVER .
your sap code >>??? let see where are you writing wrong...
Thanks
Ramesh
2010 Apr 13 9:13 PM
Use
cl_abap_char_utilities=>cr_lf. " Line Break
cl_abap_char_utilities=>NEWLINE " New line
As per ur requirement ...