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: 

How to split a tab delimited file from application server in 4.6C

Former Member
0 Kudos

Hi,

How to split a data in tab delimited text file from application server in 4.6c version.I have done same thing in version ECC6 using SPLIT l_string

AT cl_abap_char_utilities=>horizontal_tab "Horizontal tab

INTO l_funcloc_clas-tplnr

w_funcloc_clas-class

w_funcloc_clas-klart

w_funcloc_clas-atnam

w_funcloc_clas-atwrt

w_funcloc_clas-atfor.

But this class( cl_abap_char_utilities) is not available in 4.6C version.

Regards

Shibin

1 ACCEPTED SOLUTION

Former Member
0 Kudos

constants: begin of c_tab,
               tab type x value '09',
               end of c_tab.

use split at c_tab

2 REPLIES 2

Former Member
0 Kudos

constants: begin of c_tab,
               tab type x value '09',
               end of c_tab.

use split at c_tab

0 Kudos

Ramiro Escamilla ,

Thank you.... My problem is solved.

Regards

Shibin