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: 

Tab dilimited file

Former Member
0 Kudos

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

karol_seman
Active Participant
0 Kudos

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

1 REPLY 1

karol_seman
Active Participant
0 Kudos

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