‎2007 Aug 24 6:51 AM
how to read a text of that field
i heard some read_text function module is there like
can u pls help me that
‎2007 Aug 24 6:52 AM
CALL FUNCTION 'READ_TEXT'
EXPORTING
client = sy-mandt
id = c_z002
language = c_e
name = thead-tdname
object = 'VTTK'
TABLES
lines = i_line
EXCEPTIONS
id = 1
language = 2
name = 3
not_found = 4
object = 5
reference_check = 6
wrong_access_to_archive = 7
OTHERS = 8.
‎2007 Aug 24 6:53 AM
Hi,
Use read_text for that but when u r print in smartform declare your text as text module it will automatically print/
Rewards points if it is useful.
‎2007 Aug 24 10:07 AM
hi pandu
yes u can read a text of the field using READ_TEXT apart from this u have some function modules which are related are
WRITE_TEXT , SAVE_TEXT,COMMIT_TEXT, INIT_TEXT..
u can find the fields in the tables STXH (header table) , STXL (text) &
function module parameter values from these 2 tables.
some fileds of
STXH - TDOBJECT,TDNAME,TDID,TDSPRAS ............etc
STXL - ELID, TDOBJECT,TDNAME,TDID,TDSPRAS,.........etc
for more browse the tables...
hope it wil be helpful.
thanks