Hi gurus,
I wantt to display VL02n header text in that , Text ty * ZZ07 Port of discharge_B/L.*
I am using like this,,
CALL FUNCTION 'READ_TEXT'
EXPORTING
client = sy-mandt
id = 'ZZ07'
language = 'E'
name = thead-tdname (V_tdname)
object = 'VBBP'
TABLES
lines = dt_text_tline
EXCEPTIONS
id = 1
language = 2
name = 3
not_found = 4
object = 5
reference_check = 6
wrong_access_to_archive = 7
OTHERS = 8.
IF sy-subrc = 0.
it_final-dest = dt_text_tline.
EXIT .