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
constants: begin of c_tab, tab type x value '09', end of c_tab.
use split at c_tab
Ramiro Escamilla ,
Thank you.... My problem is solved.
Regards
Shibin