‎2008 Dec 29 9:31 PM
I have an input window which gets the texts from a file initially.
After reviewing the details, user can change some parts of the text.
Now the task is to identify the changes while downloading the same.
How to achive the part of identifying the changes?
(I did a read for the whole line but it does not tell me which word has been changed.)
Thanks,
Ven
‎2008 Dec 29 9:55 PM
‎2008 Dec 29 10:00 PM
If your table has 72 characters, than you can use the FM MAKE_TEXT_DELTA
Regards,
Naimesh Patel
‎2008 Dec 30 2:39 PM
How do you use the above function modules for text comparison?
MAKE_TEXT_DELTA - returns the latest entered value
while sf_string_check - what should be the inputs?
‎2008 Dec 30 2:41 PM
I checked the code.. of the FM yesterday... it returns the string with is different... I guess that is not what you are looking for..
Input:
How r u?
how r u here?
result :
how r u here?
‎2008 Dec 30 5:46 PM
Youa re right J@y.
Here is what I am trying to do:
In the ALV clikc on a button and int he resultant window, enter some text and save it.
Click on the sam button, open the window with the previously saved text.
Now change some sentences and SAVE - it should highlight the changes.
‎2009 Jan 16 2:00 AM