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

SPLIT ROW

Former Member
0 Likes
471

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
Read only

Former Member
0 Likes
436

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

Read only

Former Member
0 Likes
436
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.
Read only

alex_m
Active Contributor
0 Likes
436

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.

Read only

Former Member
0 Likes
436

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