2008 Jul 17 5:07 PM
Dear All,
I am inserting some lines text into a TextEdit Field on the
WebDynpro side and save it.
SAP Backend-System interprets new line breaks (line feeds)
which I have entered before beginning the next line through pressing enter button
as ##.
This input
test1
test2looks inside on the SAP-System like
test1##test2.Have a solution to suppress displaying #.
Regards
sas
2008 Jul 20 11:22 AM
use replace statement
REPLACE ALL OCCURRENCES OF '#'
IN text WITH space
IN CHARACTER MODE.
here text = test1##test2
after that if u want to display text as inputed by user ...
test1
test2
then use split statement
SPLIT text AT space INTO i_tab IN CHARACTER MODE.
Regards,
Joy.
use replace statement
REPLACE ALL OCCURRENCES OF '#'
IN text WITH space
IN CHARACTER MODE.
here text = test1##test2
after that if u want to display text as inputed by user ...
test1
test2
then use split statement
SPLIT text AT space INTO i_tab IN CHARACTER MODE.
Regards,
Joy.
2008 Jul 20 11:22 AM
use replace statement
REPLACE ALL OCCURRENCES OF '#'
IN text WITH space
IN CHARACTER MODE.
here text = test1##test2
after that if u want to display text as inputed by user ...
test1
test2
then use split statement
SPLIT text AT space INTO i_tab IN CHARACTER MODE.
Regards,
Joy.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |