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

Hex '05' Char

Former Member
0 Likes
919

I need to ftp a file out of SAP with an hex '05'(tab space) as a seperator between the fields in the file. Any ideas as to how this could be done.

Thanks,

ALAM.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
820

Hi,

HEX '05' is not TAB character, but I believe you want to write HEX '09'. Then you can use example with concatenate from ars.

Regards,

Pavel

I need to ftp a file out of SAP with an hex '05'(tab space) as a seperator between the fields in the file. Any ideas as to how this could be done.

Thanks,

ALAM.

4 REPLIES 4
Read only

Former Member
0 Likes
820

there are a set FMs to do FTP.......pls. search SDN with the key words like FTP_COMMAND, FTP_CONNECT.

thanq

Read only

former_member156446
Active Contributor
0 Likes
820
data: tab type c value CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB

Total Questions: 72 (35 unresolved)

Please close your open threads

Read only

former_member194669
Active Contributor
0 Likes
820

Try this way


concatenate i_tab-fld1 i_tab-fld2 into v_str separated by cl_abap_char_utilities=>horizontal_tab.

then make FTP

Read only

Former Member
0 Likes
821

Hi,

HEX '05' is not TAB character, but I believe you want to write HEX '09'. Then you can use example with concatenate from ars.

Regards,

Pavel