SAP Reports / Programs

RS_TRANSLATION_REMO_CONFIG SAP ABAP Report - Configuration of Remote Translation







RS_TRANSLATION_REMO_CONFIG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RS_TRANSLATION_REMO_CONFIG into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RS_TRANSLATION_REMO_CONFIG. "Basic submit
SUBMIT RS_TRANSLATION_REMO_CONFIG AND RETURN. "Return to original report after report execution complete
SUBMIT RS_TRANSLATION_REMO_CONFIG VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Configuration of Remote Translation
Text Symbol: 001 = Yes
Text Symbol: 002 = No
Text Symbol: 003 = Configuration has been completely deleted. Remote translation is no longer possible. Save?
Text Symbol: 004 = Specify an RFC destination for the remote translation system
Text Symbol: 005 = Specify the used translation area in the remote translation system
Text Symbol: 006 = Select object types for remote translation
Text Symbol: 007 = RFC destination exists and works


INCLUDES used within this REPORT RS_TRANSLATION_REMO_CONFIG

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

LXE_TD_REMO_GETCONFIG CALL FUNCTION 'LXE_TD_REMO_GETCONFIG' EXPORTING REMOTETYPE = CO_REMO_TYPE_SE61 IMPORTING REMO_CFG = LT_REMO_CONFIG RFCDEST = LV_RFCDEST EXCEPTIONS REMOTE_TRANSL_NOT_CONFIGURED = 1 RFCDEST_NOT_UNIQUE = 2 OTHERS = 3.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' * DIAGNOSE_OBJECT = ' ' TEXT_QUESTION = 'Die Konfiguration ist komplett gelöscht. Remote-Übersetzung ist nicht mehr möglich. Speichern?'(003)

LXE_ATTOB_OBJTYPES_SELECT CALL FUNCTION 'LXE_ATTOB_OBJTYPES_SELECT' EXPORTING * TITLE = '' * TYPEATT = '*' * BOTH = '' * NON_R3_ONLY = '' * SHOW_ONLY = '' * START_X = '1' START_Y = '4' * END_X = '74' * END_Y = '22' IMPORTING SEL_DONE = lv_sel_done TABLES EX_ATTOB = lt_ex_attob MARK_ATTOB = lt_mark_attob.

LXE_LANG_GET_LANGS CALL FUNCTION 'LXE_LANG_GET_LANGS' TABLES EX_LANGS = LT_ALL_LANG.

LXE_LANG_LANGS_SELECT CALL FUNCTION 'LXE_LANG_LANGS_SELECT' IMPORTING SEL_DONE = lv_sel_done TABLES EX_LANGS = lt_ex_lang MARK_LANGS = LT_MARK_LANG.

DEST_CHECK_CONNECTION CALL FUNCTION 'DEST_CHECK_CONNECTION' EXPORTING NAME = lv_rfcdest * IMPORTING * CONNECTION_TEST_RESULT = * CONNECTION_ERROR_TEXT = msg * AUTHORIZATION_TEST_RESULT = * AUTHORIZATION_ERROR_TEXT = * CONNECTION_PROPERTIES = EXCEPTIONS CHECK_NOT_POSSIBLE = 1 OTHERS = 2.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RS_TRANSLATION_REMO_CONFIG or its description.