SAP Reports / Programs

RS_TRANSLATION_EXPORT_PP_IIB SAP ABAP Report - Proposal Pool Export According to Object List







RS_TRANSLATION_EXPORT_PP_IIB 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_IIB 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_IIB. "Basic submit
SUBMIT RS_TRANSLATION_EXPORT_PP_IIB AND RETURN. "Return to original report after report execution complete
SUBMIT RS_TRANSLATION_EXPORT_PP_IIB 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: ADD_BEST = Add Best Proposal
Selection Text: BATCH = Start in Background
Selection Text: DIRECTRY = Directory
Selection Text: FILENAME = File Name
Selection Text: OBJLIST = Object List
Selection Text: SIMP_LNG = Old Language Keys
Selection Text: S_LANG = Source Language
Selection Text: T_LANG = Target Language
Title: Proposal Pool Export According to Object List
Text Symbol: 001 = Directory can only be 44 characters long in backgrd processg
Text Symbol: 004 = Unable to open file:
Text Symbol: 005 = Conversion problem:
Text Symbol: 006 = Language Not Known:
Text Symbol: 011 = Source Language:
Text Symbol: 012 = Target Language:
Text Symbol: 013 = Statistics
Text Symbol: 014 = Exported (Total)
Text Symbol: 015 = PP
Text Symbol: 016 = PPA
Text Symbol: 017 = PPX


INCLUDES used within this REPORT RS_TRANSLATION_EXPORT_PP_IIB

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_IIB' * 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_COLOB_COLOB_SELECT * CALL FUNCTION 'LXE_COLOB_COLOB_SELECT' * EXPORTING * objlist = objlist * IMPORTING * pstatus = lv_pstatus * TABLES * ex_colob = lt_colob.

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_ATTOB_ATTS_OBJECT_READ * CALL FUNCTION 'LXE_ATTOB_ATTS_OBJECT_READ' * EXPORTING * obj_type = lt_colob-objtype * IMPORTING * type_attr = lv_typeatt.

LXE_OBJ_CONVERT_OL_WLB * CALL FUNCTION 'LXE_OBJ_CONVERT_OL_WLB' * EXPORTING * in_custmnr = lt_colob-custmnr * in_objtype = lt_colob-objtype * in_objname = lt_colob-objname * IMPORTING * custmnr = ls_wrkob-custmnr * objtype = ls_wrkob-objtype * objname = ls_wrkob-objname.

LXE_OBJ_TEXT_PAIR_READ * CALL FUNCTION 'LXE_OBJ_TEXT_PAIR_READ' * EXPORTING * t_lang = t_lang * s_lang = s_lang * custmnr = ls_wrkob-custmnr * objtype = ls_wrkob-objtype * objname = ls_wrkob-objname * read_only = 'X' * IMPORTING * domatyp = lv_domatyp * domanam = lv_domanam * pstatus = lv_pstatus * TABLES * lt_pcx_s1 = lt_pcx_s1.

LXE_PP1_TRANSLATION_EVAL * CALL FUNCTION 'LXE_PP1_TRANSLATION_EVAL' * EXPORTING * t_lang = t_lang * s_lang = s_lang * custmnr = ls_wrkob-custmnr * objtype = ls_wrkob-objtype * domatyp = lv_domatyp * domanam = lv_domanam * s_text = lt_pcx_s1-s_text * t_text = lt_pcx_s1-t_text * unitmlt = lt_pcx_s1-unitmlt * IMPORTING * stattrn = lv_stattrn * pstatus = lv_pstatus * fnd_pp = lt_pp * fnd_ppa = lt_ppa * fnd_ppx = lt_ppx.

LXE_PP1_PROPOSAL_GET * CALL FUNCTION 'LXE_PP1_PROPOSAL_GET' * EXPORTING * s_lang = s_lang * t_lang = t_lang * custmnr = ls_wrkob-custmnr * objtype = ls_wrkob-objtype * domatyp = lv_domatyp * domanam = lv_domanam * text = lt_pcx_s1-s_text * unitmlt = lt_pcx_s1-unitmlt * IMPORTING * fnd_pp = lt_pp * fnd_ppa = lt_ppa * EXCEPTIONS * internal_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_COLOB_OBJL_SELECT





* CALL FUNCTION 'LXE_COLOB_OBJL_SELECT' * EXPORTING * non_deleted = 'X' * IMPORTING * objlist = objlist * EXCEPTIONS * no_selection = 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_EXPORT_PP_IIB or its description.