2018 Apr 26 6:24 AM
Hi all,
I have a question about SAP script raw line.
In a nutshell, text like '<p>' was formatted to ''<)><<)>p>".
I got ''<)><<)>p>" in my code and can I recover it to '<p>'.
How can I do that? Thank you
2018 Apr 26 6:45 AM
Don't use the destroy editor.
Only the awkward WYTISWYS editor is reliable.
2018 Apr 26 7:11 AM
2018 Apr 26 11:27 AM
2018 Apr 26 11:48 AM
I am also curiosity about how <p> was formatted to <)><<)>p> by using FM CONVERT_ASCII_TO_ITF.
I have tried format '(' as document said, but it didin't work.
2018 Apr 26 11:58 AM
The text like '<)><<)>p>' is generated in SapScript editor when user input some reserved character, characters used to manage format or variables (Here the "<" character which is the begining of a SapScript command/format).
If FM doesn't work yu have to convert the "<)>one character<)>" string back to the single character using search/replace statements/tools. But then the text won't be compliant any longer with SapScript syntax.
2018 Apr 27 6:46 AM
Thank you, I am going to have another try on the FM mentioned.