SAP Reports / Programs

RS_TRANSLATION_EXPORT_PP SAP ABAP Report - Proposal Pool Export







RS_TRANSLATION_EXPORT_PP 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_EXPORT_PP 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_EXPORT_PP. "Basic submit
SUBMIT RS_TRANSLATION_EXPORT_PP AND RETURN. "Return to original report after report execution complete
SUBMIT RS_TRANSLATION_EXPORT_PP VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: T_LANG = Target Language
Selection Text: S_LANG = Source Language
Selection Text: SIMP_LNG = Old Language Keys
Selection Text: MIN_STAT = Quality Status (From)
Selection Text: MAX_STAT = Quality Status (To)
Selection Text: L_NAME = Last Changed By
Selection Text: L_DATE2 = Change Date (To)
Selection Text: L_DATE1 = Change Date (From)
Selection Text: F_NAME = Created By
Selection Text: F_DATE2 = Creation Date (To)
Selection Text: F_DATE1 = Creation Date (From)
Selection Text: FL_PPX = Export Exceptions
Selection Text: FL_PPA = Export Abbreviations
Selection Text: FL_PP = Export Standard Proposals
Selection Text: FILENAME = File Name
Selection Text: DOMATYP = Domain Type
Selection Text: DOMANAM = Domain Name
Selection Text: DIRECTRY = Directory
Selection Text: BATCH = Start in Background
Title: Proposal Pool Export
Text Symbol: 017 = PPX
Text Symbol: 016 = PPA
Text Symbol: 015 = PP
Text Symbol: 014 = Exported (Total)
Text Symbol: 013 = Statistics
Text Symbol: 012 = Target Language:
Text Symbol: 011 = Source Language:
Text Symbol: 006 = Language Not Known:
Text Symbol: 005 = Conversion problem:
Text Symbol: 004 = Unable to open file:
Text Symbol: 001 = Directory can only be 44 characters long in backgrd processg


INCLUDES used within this REPORT RS_TRANSLATION_EXPORT_PP

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_AUTH_CHECK_PERMISSION * CALL FUNCTION 'LXE_AUTH_CHECK_PERMISSION' * EXPORTING * root = 'X' * EXCEPTIONS * permission_denied = 1 * internal_error = 2 * OTHERS = 3.

FILE_GET_NAME * CALL FUNCTION 'FILE_GET_NAME' * EXPORTING * logical_filename = cl_lxe_constants=>c_logical_subdir_pp * including_dir = abap_true * IMPORTING * file_name = directry * EXCEPTIONS * OTHERS = 1.

SLWY_START_BATCHJOB * CALL FUNCTION 'SLWY_START_BATCHJOB' * EXPORTING * jobname = lv_jobname * reportname = 'RS_TRANSLATION_EXPORT_PP' * no_periodic = 'X' * TABLES * seltab = lt_seltab * EXCEPTIONS * start_error = 1 * OTHERS = 2.

LXE_T002_CHECK_LANGUAGE * CALL FUNCTION 'LXE_T002_CHECK_LANGUAGE' * EXPORTING * language = s_lang * IMPORTING * o_r3_lang = lv_s_lang * is_r3_lang = lv_is_r3 * EXCEPTIONS * language_not_in_cp = 1 * unknown = 2 * OTHERS = 3.

LXE_T002_CHECK_LANGUAGE * CALL FUNCTION 'LXE_T002_CHECK_LANGUAGE' * EXPORTING * language = t_lang * IMPORTING * o_r3_lang = lv_t_lang * is_r3_lang = lv_is_r3 * EXCEPTIONS * language_not_in_cp = 1 * unknown = 2 * OTHERS = 3.

LXE_PP1_FILE_OPEN * CALL FUNCTION 'LXE_PP1_FILE_OPEN' * EXPORTING * s_lang = lv_langs * t_lang = lv_langt * directry = directry * filename = lv_filename * purpose = 'E' * IMPORTING * filepath = lv_filepath * outcode = lv_outcode * incode = lv_incode * EXCEPTIONS * error = 1 * OTHERS = 2.

LXE_PP1_FILE_EXPORT_PP * call function 'LXE_PP1_FILE_EXPORT_PP' * exporting * filepath = lv_filepath * outcode = lv_outcode * incode = lv_incode * importing * total = lv_tot * exported = lv_exp * tables * lt_pp = lt_pp * exceptions * error = 1 * others = 2.

LXE_PP1_FILE_EXPORT_PPA * CALL FUNCTION 'LXE_PP1_FILE_EXPORT_PPA' * EXPORTING * filepath = lv_filepath * outcode = lv_outcode * incode = lv_incode * IMPORTING * total = lv_ppa_total * exported = lv_ppa_exported * TABLES * lt_ppa = lt_ppa * EXCEPTIONS * error = 1 * OTHERS = 2.

LXE_PP1_FILE_EXPORT_PPX * CALL FUNCTION 'LXE_PP1_FILE_EXPORT_PPX' * EXPORTING * filepath = lv_filepath * outcode = lv_outcode * incode = lv_incode * IMPORTING * total = lv_ppx_total * exported = lv_ppx_exported * TABLES * lt_ppx = lt_ppx * EXCEPTIONS * error = 1 * OTHERS = 2.

LXE_PP1_FILE_CLOSE * CALL FUNCTION 'LXE_PP1_FILE_CLOSE' * EXPORTING * filepath = lv_filepath * EXCEPTIONS * error = 1 * OTHERS = 2.

LXE_T002_SELECT_LANGUAGE * CALL FUNCTION 'LXE_T002_SELECT_LANGUAGE' * IMPORTING * language = s_lang * EXCEPTIONS * parameter_error = 1 * no_values_found = 2 * OTHERS = 3.

LXE_T002_SELECT_LANGUAGE * CALL FUNCTION 'LXE_T002_SELECT_LANGUAGE' * IMPORTING * language = t_lang * EXCEPTIONS * parameter_error = 1 * no_values_found = 2 * OTHERS = 3.

LXE_PP1_STATUS_SELECT * CALL FUNCTION 'LXE_PP1_STATUS_SELECT' * EXPORTING * t_lang = t_lang * distribute = 'X' * no_perm_check = 'X' * display_deleted = '-' * IMPORTING * status = min_stat.

LXE_PP1_STATUS_SELECT * CALL FUNCTION 'LXE_PP1_STATUS_SELECT' * EXPORTING * t_lang = t_lang * no_perm_check = 'X' * full_range = 'X' * IMPORTING * status = max_stat.



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_EXPORT_PP or its description.