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

Tab dilimited file

Former Member
0 Likes
367

Hi,

How can I conctaenate filelds into a new field dilimited by tab. When I am using ' ' (tab between colons) its taking it as space. I want it to take it as tab.

Thanks.

1 ACCEPTED SOLUTION
Read only

karol_seman
Active Participant
0 Likes
326

Hi,

check class cl_gui_Char_utilities you have tab delimiter there...


DATA: lv_tab(1) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.

you can concatenate separated by lv_tab.

Regards,

Karol

Hi,

How can I conctaenate filelds into a new field dilimited by tab. When I am using ' ' (tab between colons) its taking it as space. I want it to take it as tab.

Thanks.

1 REPLY 1
Read only

karol_seman
Active Participant
0 Likes
327

Hi,

check class cl_gui_Char_utilities you have tab delimiter there...


DATA: lv_tab(1) TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.

you can concatenate separated by lv_tab.

Regards,

Karol