RS_TRANSLATION_OBJLIST_WORKLST 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_OBJLIST_WORKLST 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: CHCK_ORI = Check if Object Exists
Selection Text: NAME = Name
Selection Text: STATTRN = Translation Status
Selection Text: T_LANG = Target Language
Selection Text: WLISTID = Worklist
Title: Generate Object List from Worklist
Text Symbol: 002 = Error During DB Access
Text Symbol: 003 = Parameters:
Text Symbol: 008 = Object List Could Not Be Created
Text Symbol: S00 = Inserted Objects:
Text Symbol: S01 = Object List:
Text Symbol: W00 = No Objects Exist
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LXE_WRK_WORKLIST_SELECT CALL FUNCTION 'LXE_WRK_WORKLIST_SELECT' EXPORTING targ_lang = t_lang wlistid = lv_wlistid IMPORTING pstatus = lv_pstatus TABLES ex_wrkob = lt_wrkob.
LXE_WRK_WORKLIST_SELECT CALL FUNCTION 'LXE_WRK_WORKLIST_SELECT' EXPORTING targ_lang = t_lang wlistid = lv_wlistid stattrn = stattrn IMPORTING pstatus = lv_pstatus TABLES ex_wrkob = lt_wrkob.
LXE_COLOB_OBJL_GET_NEW CALL FUNCTION 'LXE_COLOB_OBJL_GET_NEW' EXPORTING text = lv_text objl_type = cl_lxe_con_eval=>objlist_special IMPORTING new_objlist = ls_objl EXCEPTIONS foreign_lock = 1 error = 2 OTHERS = 3.
LXE_OBJ_CONVERT_WL_OLB CALL FUNCTION 'LXE_OBJ_CONVERT_WL_OLB' EXPORTING in_custmnr =
-custmnr in_objtype = -objtype in_objname = -objname IMPORTING ex_custmnr = wa_colob-custmnr ex_objtype = wa_colob-objtype ex_objname = wa_colob-objname.
LXE_OBJ_GET_TECH_INFO CALL FUNCTION 'LXE_OBJ_GET_TECH_INFO' EXPORTING custmnr = wa_colob-custmnr objtype = wa_colob-objtype objname = wa_colob-objname IMPORTING colltyp = wa_colob-colltyp collnam = wa_colob-collnam domatyp = wa_colob-domatyp domanam = wa_colob-domanam orig_lang = wa_colob-orig_lang.
LXE_COLOB_INSERT_DB CALL FUNCTION 'LXE_COLOB_INSERT_DB' EXPORTING objlist = ls_objl-objlist TABLES in_colob = lt_colob EXCEPTIONS error = 1 OTHERS = 2.
LXE_COLOB_OBJL_UPDATE CALL FUNCTION 'LXE_COLOB_OBJL_UPDATE' EXPORTING objlist = ls_objl-objlist status = cl_lxe_con_eval=>finished EXCEPTIONS foreign_lock = 1 error = 2 OTHERS = 3.
LXE_WRK_WL_SELECT CALL FUNCTION 'LXE_WRK_WL_SELECT' IMPORTING wlistid = lv_wlistid EXCEPTIONS no_selection = 1 OTHERS = 2.
LXE_LANG_SELECT CALL FUNCTION 'LXE_LANG_SELECT' EXPORTING show_star = 'X' IMPORTING language = t_lang EXCEPTIONS no_selection = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RS_TRANSLATION_OBJLIST_WORKLST - Generate Object List from Worklist RS_TRANSLATION_OBJLIST_WORKLST - Generate Object List from Worklist RS_TRANSLATION_OBJLIST_REMOTE - Object List According to Releases from Remote System RS_TRANSLATION_OBJLIST_REMOTE - Object List According to Releases from Remote System RS_TRANSLATION_OBJLIST_LOG - Generate Object List From Translation Log RS_TRANSLATION_OBJLIST_LOG - Generate Object List From Translation Log