‎2007 May 09 5:20 AM
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..
‎2007 May 09 5:26 AM
chk these but not sure
'STRING_SPLIT_AT_POSITION'
SWA_STRING_SPLIT
‎2007 May 09 5:28 AM
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
‎2007 May 09 5:30 AM
Hi Krishna,
I dint find these FM's as obsolete.please check it once again.
Rgds,
Prajith