‎2008 Jul 03 11:35 AM
Hi All,
i had a small problem in eCATT. i have used GETGUI command to pick up a file name in SLG1. But it is picking all the message i.e., "filename opened successfully". here i need only the file name. I dont want the entire message. Is there any solution in ABAP to pick only that file name from the message.
***********Points will be rewarded.
regards,
Santosh.
‎2008 Jul 30 8:47 AM
Hi,
you can split the string into piece using SPLIT statement in ABAP.
SPLIT filename_text AT filename INTO: str1 str2 str3.
Also you can use offset method like
str = str+1(2).
starting from 1st letter get me next two letters.
i hope this helps
regards
vinay