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

Problem with Split

Former Member
0 Likes
272

Hi,

I am downloading data from unix file to internal table, but when i split the data

e.g 00800000700#7#

After writting

split v_buffer at cl_abap_char_utilities=>horizontal_tab into table itab.

The value is passing to internal tables in two rows like output is coming as

00800000700

7

Where as i should get output follows which is the structure of itab

00800000700 7

Regards

Vinni

1 REPLY 1
Read only

Former Member
0 Likes
249

Welcome to SDN.

  1. means Tab space. so no need to write the split command,just move the data from file to internal table,data will come automatically.

Thanks

Seshu