KE1_WU_DATA is a standard ABAP INCLUDE 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 KE1_WU_DATA 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.
INCLUDE IFRE_BEGIN_OF_RE_EA_FIN.
INCLUDE IFRE_END_OF_RE_EA_FIN.
No SAP DATABASE tables are accessed within this REPORT code!
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = c_gsetc_profitcenter_setclass kokrs = kokrs rollname = 'PRCTR' TABLES matching_sets = et_loc_toplist.
G_SET_GET_SUPERSETS CALL FUNCTION 'G_SET_GET_SUPERSETS' EXPORTING setname = s_loc_setlist-setname TABLES supersets = t_loc_superset.
G_SET_DECRYPT_SETID CALL FUNCTION 'G_SET_DECRYPT_SETID' EXPORTING setid = s_loc_superset-setname IMPORTING setclass = s_loc_setclass_father.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = c_gsetc_profitcenter_setclass kokrs = kokrs rollname = 'PRCTR' TABLES matching_sets = t_loc_setlist.
G_SET_TREE_IMPORT CALL FUNCTION 'G_SET_TREE_IMPORT' EXPORTING no_rw_info = 'X' setid = s_loc_setlist-setname TABLES set_hierarchy = t_sethier EXCEPTIONS set_not_found = 1 illegal_field_replacement = 2 illegal_table_replacement = 3 set_is_damaged = 4 OTHERS = 5.
G_SET_GET_SUPERSETS CALL FUNCTION 'G_SET_GET_SUPERSETS' EXPORTING setname = s_loc_setlist-setname TABLES supersets = t_loc_superset.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-151 "prctr beginnt i_output_immediately = 'X'.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-152 "prctr fertig i_output_immediately = 'X'.
K_KOKRS_READ CALL FUNCTION 'K_KOKRS_READ' EXPORTING kokrs = kokrs IMPORTING e_tka01 = s_tka01 EXCEPTIONS not_found = 1 not_found_gjahr = 2 OTHERS = 3.
G_SET_ENCRYPT_SETID CALL FUNCTION 'G_SET_ENCRYPT_SETID' EXPORTING setclass = c_gsetc_profitcenter_setclass shortname = s_tka01-phinr kokrs = kokrs IMPORTING setid = setid EXCEPTIONS no_co_area_specified = 1 illegal_setclass = 2 OTHERS = 3.
G_SET_TREE_IMPORT CALL FUNCTION 'G_SET_TREE_IMPORT' EXPORTING no_rw_info = true setid = setid TABLES set_hierarchy = t_sethier set_values = t_set_values EXCEPTIONS set_not_found = 1 illegal_field_replacement = 2 illegal_table_replacement = 3 set_is_damaged = 4 OTHERS = 5.
G_SET_TREE_ADD_POINTERS CALL FUNCTION 'G_SET_TREE_ADD_POINTERS' TABLES set_hierarchy = t_sethier set_values = t_set_values set_hier_ptr = t_set_hier_ptr EXCEPTIONS set_values_needed = 1 OTHERS = 2.
OBJECT_KEY_GET_VB CALL FUNCTION 'OBJECT_KEY_GET_VB' EXPORTING objnr = ls_ke1_wu_item-objnr IMPORTING posnr = ls_grid_vb-posnr vbeln = ls_grid_vb-vbeln.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.