Posted: Fri Jun 27, 2008 1:44 pm Post subject: Show documentation
Code:
FORM info_texte_anzeigen.
DATA: BEGIN OF i_excl OCCURS 0,
func(4) TYPE c,
END OF i_excl.
DATA:
i_line LIKE tline OCCURS 0 WITH HEADER LINE,
i_line_h LIKE tline OCCURS 0 WITH HEADER LINE,
s_hinfo LIKE help_info,
tdname LIKE thead-tdname,
tdspras LIKE thead-tdspras.
* Texte lesen
tdname = kunnr.
IF zv05_ad-spras IS INITIAL.
tdspras = sy-langu.
ELSE.
tdspras = kna1-spras.
ENDIF.
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = '9002'
language = tdspras
name = tdname
object = 'KNA1'
TABLES
lines = i_line_h
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.
APPEND LINES OF i_line_h TO i_line.
ENDIF.
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = '9003'
language = tdspras
name = tdname
object = 'KNA1'
TABLES
lines = i_line_h
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.
IF NOT i_line[] IS INITIAL.
i_line = text-103.
APPEND i_line.
ENDIF.
APPEND LINES OF i_line_h TO i_line.
ENDIF.
IF i_line[] IS INITIAL.
MESSAGE s513.
EXIT.
ENDIF.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.