2007 Feb 28 12:06 PM
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
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
2007 Feb 28 12:08 PM
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
2007 Feb 28 12:09 PM
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.
2007 Feb 28 12:10 PM
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.
2007 Feb 28 12:11 PM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |