SAP Reports / Programs

EFG_CREATE_TRANSLATION_LIST SAP ABAP Report - Print Workbench: Creation of Worklist for Application Forms







EFG_CREATE_TRANSLATION_LIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Trados = docu -> fi -> fica -> fica...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 EFG_CREATE_TRANSLATION_LIST into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

EFTR - Print Workbench: Generate Trans.List


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 EFG_CREATE_TRANSLATION_LIST. "Basic submit
SUBMIT EFG_CREATE_TRANSLATION_LIST AND RETURN. "Return to original report after report execution complete
SUBMIT EFG_CREATE_TRANSLATION_LIST 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: R_FKEY = Application Forms
Selection Text: R_FCLASS = Form Class
Selection Text: R_DEVC = Development Class
Selection Text: P_TLANGU = Target Language
Selection Text: P_TEXTS = Translate Short Texts
Selection Text: P_OTODO = Only Transfer Form To Be Trans
Selection Text: P_OLANGU = Original Language
Selection Text: P_CLIENT = Client
Title: Print Workbench: Creation of Worklist for Application Forms
Text Symbol: I01 = Application Form &1 (&2/&3) ...
Text Symbol: 630 = All short texts are translated
Text Symbol: 620 = Some short texts still to be translated
Text Symbol: 100 = Application Form
Text Symbol: 150 = Translation List Status on &1 for Language &2, Original &3
Text Symbol: 200 = Text &1 does not exist in original language &2
Text Symbol: 210 = Text &1 does not yet exist in language &2
Text Symbol: 220 = Text &1 must be translated into language &2
Text Symbol: 300 = No SAPscript form is specified
Text Symbol: 310 = SAPscript form &1 is not active in language &2
Text Symbol: 320 = SAPscript form &1 does not yet exist in language &2
Text Symbol: 350 = SAPscript form &1 must still be translated into language &2
Text Symbol: 360 = No SAPscript form is specified
Text Symbol: 600 = No short texts exist
Text Symbol: 610 = All short texts are still to be translated


INCLUDES used within this REPORT EFG_CREATE_TRANSLATION_LIST

INCLUDE EFG_GEN.
INCLUDE EFG_MSG.
INCLUDE IEFGTRCONSTS.


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:

EFG_DB_EFRM_CLIENT_SELECT CALL FUNCTION 'EFG_DB_EFRM_CLIENT_SELECT' EXPORTING x_client = sy-mandt * X_ACTUAL = * X_LANGU = SY-LANGU x_no_links = 'X' TABLES yt_efrm = yt_efrm EXCEPTIONS not_found = 1 OTHERS = 99.

EFG_DB_FORM_SELECT CALL FUNCTION 'EFG_DB_FORM_SELECT' EXPORTING x_client = sy-mandt x_formkey = xt_efrm-formkey x_actual = 'X' x_flg_get_link = '' IMPORTING y_form = l_form y_flg_link = l_flg_link EXCEPTIONS not_found = 1 not_qualified = 2 failed = 3 OTHERS = 4.

EFG_H_GET_TRANSLATION_STATUS CALL FUNCTION 'EFG_H_GET_TRANSLATION_STATUS' EXPORTING x_obj_type = co_obj_tdform x_name = l_efrm-tdform x_olangu = p_olangu x_tlangu = p_tlangu * x_formkey = IMPORTING y_status = l_str-status EXCEPTIONS not_qualified = 1 input_error = 2 OTHERS = 3.

EFG_H_GET_TRANSLATION_STATUS CALL FUNCTION 'EFG_H_GET_TRANSLATION_STATUS' EXPORTING x_obj_type = co_obj_text x_name = l_efrmstr-text_name x_olangu = p_olangu x_tlangu = p_tlangu IMPORTING y_status = l_str-status EXCEPTIONS not_qualified = 1 input_error = 2 OTHERS = 3.

EFG_WORKLIST_POPUP CALL FUNCTION 'EFG_WORKLIST_POPUP' EXPORTING x_wmode = con_wmode_create x_date = sy-datum x_identifier = l_id IMPORTING y_date = xy_worklist-header-edate y_identifier = xy_worklist-header-identifier y_descript = xy_worklist-header-descript y_responsible = xy_worklist-header-responsible EXCEPTIONS not_qualified = 1 cancelled = 2 failed = 3 OTHERS = 4.

EFG_DB_WORKLIST_UPDATE CALL FUNCTION 'EFG_DB_WORKLIST_UPDATE' EXPORTING x_worklist = xy_worklist x_upd_mode = con_upd_insert EXCEPTIONS not_qualified = 1 failed = 2 OTHERS = 3.

EFG_S_WORKLIST_MAINTAIN CALL FUNCTION 'EFG_S_WORKLIST_MAINTAIN' EXPORTING x_date = xy_worklist-header-edate x_id = xy_worklist-header-identifier x_wmode = con_wmode_change EXCEPTIONS OTHERS = 1.

EFG_H_GET_TRANSLATION_STATUS CALL FUNCTION 'EFG_H_GET_TRANSLATION_STATUS' EXPORTING x_obj_type = co_obj_tabl x_name = co_tabname_efrmte x_olangu = p_olangu x_tlangu = p_tlangu x_formkey = x_form-efrm-formkey IMPORTING y_status = l_str-status EXCEPTIONS not_qualified = 1 input_error = 2 OTHERS = 3.

EFG_DB_TADIR_SELECT CALL FUNCTION 'EFG_DB_TADIR_SELECT' EXPORTING x_pgmid = 'R3TR' x_obj = 'EFCL' x_obj_name = l_tadir-obj_name IMPORTING y_tadir = l_tadir EXCEPTIONS not_found = 2 OTHERS = 3.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = l_percentt text = l_text.



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