2007 Jan 10 6:31 AM
Hi all,
Curenlty I am using SET_TEXT_AS_STREAM method of class CL_GUI_TEXTEDIT to display text. Since my table contains voth the format and the text, the format is also getting displayed as a text in the editor.
Eg. My table contains value as
TDFORMT TDLINE
Vijay
My output in the Text editor is
Vijay
but i need only 'Vijay' to be displayed not the *.
Regards,
Vijayakumar
2007 Jan 10 7:05 AM
Hi ,
Declare a internal table and move the tdline value to your internal table field
and use that internal table as input to method SET_TEXT_AS_STREAM .
Please reward if useful.
2007 Jan 10 7:15 AM
Hello Vijayakumar,
Use the function module CONVERT_ITF_TO_STREAM_TEXT to convert the text from the ITF format into the Stream format and then use the returned internal table in the SET_TEXT_AS_STREAM method.
Hope this helps.
Manoj