RSTQJH03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program lists all SAPscript texts that are assigned to Report Writer reports...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSTQJH03 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: CUR_REL = Release
Selection Text: FLG_NEW = Incl. curr. translated texts
Selection Text: LANGU = Target language
Selection Text: LIB = Library
Selection Text: S_LANGU = Source language
Selection Text: T_LANGU = Target language
Title: Report Writer: Translate Texts
Text Symbol: 001 = Report Writer: Translate texts
Text Symbol: 002 = |LnNo|TTyp|Text name |Rel.| |Author |Changed by |Changed on|Tranltd on|
Text Symbol: 009 = Source language:
Text Symbol: 010 = Target language:
Text Symbol: 011 = Key:
Text Symbol: 013 = Translation current
Text Symbol: 014 = Not translated
Text Symbol: 015 = Proofread translation
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REPORT_TEXT_SELECT CALL FUNCTION 'REPORT_TEXT_SELECT' EXPORTING CLIENT = SY-MANDT APPLICATION = 'FGR ' TEXT_NAME = SEL_TEXT_NAME TEXT_TYPE = '*' TABLES TEXT_HEADER = INT_RTXTH TEXT_LINES_HEADER = INT_RTXTT EXCEPTIONS NO_TEXT_FOUND = 01.
REPORT_TEXT_TRANSLATE CALL FUNCTION 'REPORT_TEXT_TRANSLATE' EXPORTING APPLICATION = 'FGR ' FROM_LANGU = S_LANGU LANGU = T_LANGU PAGE_WIDTH = 0 TEXT_NAME = TEXT_NAME TEXT_TYPE = TDID-TEXT_TYPE TRANSLATE_ONLY = 'X' EXCEPTIONS INVALID_APPLICATION = 01 INVALID_TEXT_TYPE = 02 NOTHING_CHANGED = 03.
SAVE_REPORT_TEXTS CALL FUNCTION 'SAVE_REPORT_TEXTS' EXPORTING APPLICATION = 'FGR ' LANGU = T_LANGU TEXT_NAME = TEXT_NAME TEXT_TYPE = TDID-TEXT_TYPE EXCEPTIONS INVALID_APPLICATION = 01 INVALID_TEXT_TYPE = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.