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

Alternative to STRING_SPLIT and STRING_CONCATENATE_3

Former Member
0 Likes
1,574

Hi Friends,

STRING_CONCATENATE_3 and STRING_SPLIT are Obsolete FM.

What are the new FM i have to use? My client is using 6.0 version.

Thanks in Advance

Sri..

3 REPLIES 3
Read only

Former Member
0 Likes
905

chk these but not sure

'STRING_SPLIT_AT_POSITION'
SWA_STRING_SPLIT

Read only

Former Member
0 Likes
905

There are new keywords in 6.0 which can do the same things :

STRING_CONCATENATE_3 takes 3 input strings and concatenates them.

The following ABAP statement does the same in 6.0

CONCATENATE str1 str2 str3 INTO str_result.

STRING_SPLIT splits a given string and a delimiter into a head and tail.

The following ABAP statement does the same in 6.0

SPLIT str AT delimiter INTO result1 result2

Hope this helps you.

Please read documentation on word SPLIT and CONCATENATE for more details

Read only

Former Member
0 Likes
905

Hi Krishna,

I dint find these FM's as obsolete.please check it once again.

Rgds,

Prajith