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: 

SPLIT ROW

Former Member
0 Kudos

HI,

what is SPLIT ROW?

what is the functionality of that?

how do we use that?

it will very helpful if anybody explain it

Thanks

4 REPLIES 4

former_member181962
Active Contributor
0 Kudos

I know of an abap statement SPLIT but no SPLIT ROW.

SPLIT will split a string at a specified location.

split str at ',' into v_str v_str2.

Regards,

Ravi

Former Member
0 Kudos
do u want to split a row 

DATA: str1 TYPE string, 
      str2 TYPE string, 
      str3 TYPE string, 
      itab TYPE TABLE OF string, 
      text TYPE string. 

text = `What a drag it is getting old`. 

SPLIT text AT space INTO: str1 str2 str3, 
                          TABLE itab.

alex_m
Active Contributor
0 Kudos

I dont think any statement availabkle SPLIT ROW. u are taking with ABAP or something else.

SPLIT statement is there in ABAP to splite the string in partcular way.

Former Member
0 Kudos

hi,

data: x(35) value 'Gangadharayya,Hiremath',

y(15),z(15).

split x at ',' into y z.

write: y,/ z.

output: Gangadharayya

Hiremath

regards,

pankaj singh

hope u can understand now