Hi Mohanty,
I tried it and found a way to do it but at the end it is displaying only.Data in backend(debugging) is splitted and is showing in different fields of ls_textlines fields.
While reading the READ_TEXT data is flowing into tables parameter(Tables->LINES) TEXT_LINE.
DATA: ls_textlines TYPE STANDARD TABLE OF mmpur_textlines.
DATA: TEXT_LINE TYPE STANDARD TABLE OF TLINE .
End of function module READ_TEXT it is as ls_textlines = TEXT_LINE(moving data to ls_textlines).
at the end to set the data below code is written :
CALL METHOD im_item->if_longtexts_mm~set_text(
EXPORTING
im_tdid = 'B05'
im_textlines = ls_textlines ).
It is showing data in ME51N item text with last field of ls_textlines i.e; mmpur_textlines-tdline but i required to show full data which is showing as splitted in fields of mmpur_textlines.
Pls guide me to go further.
Many Thanks,
Anand.