Application Development 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: 

FTP_R3_TO_SERVER lines are adjacent, not as new lines

Former Member
0 Kudos
203

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos
78

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

2 REPLIES 2

Former Member
0 Kudos
79

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

0 Kudos
78

Use

cl_abap_char_utilities=>cr_lf. " Line Break

cl_abap_char_utilities=>NEWLINE " New line

As per ur requirement ...