KE1_WU_SELOPT_FRAME 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_SELOPT_FRAME 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!
ENQUEUE_E_KE1_WU_RUNID CALL FUNCTION 'ENQUEUE_E_KE1_WU_RUNID' EXPORTING mode_ke1_wu_runid = 'E' mandt = sy-mandt runid = ke1_wu_runid-runid x_runid = ' ' _scope = '1' _wait = ' ' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_E_KE1_WU_RUNID CALL FUNCTION 'DEQUEUE_E_KE1_WU_RUNID' EXPORTING mode_ke1_wu_runid = 'E' mandt = sy-mandt runid = ke1_wu_runid-runid x_runid = ' ' _scope = '3' _synchron = 'X' _collect = ' '.
ENQUEUE_E_KE1_WU_RUNID CALL FUNCTION 'ENQUEUE_E_KE1_WU_RUNID' EXPORTING mode_ke1_wu_runid = 'E' mandt = sy-mandt runid = next_runid x_runid = ' ' _scope = '2' _wait = ' ' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'FIELD2' TABLES value_tab = t_field field_tab = t_field_tab return_tab = t_return_tab EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text_frage text_button_1 = text-101 icon_button_1 = 'ICON_EXECUTE_OBJECT' text_button_2 = text-102 icon_button_2 = 'ICON_BACKGROUND_JOB' default_button = '1' display_cancel_button = 'X' start_column = 25 start_row = 6 IMPORTING answer = return.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-118 text_button_1 = text-044 icon_button_1 = 'ICON_EXECUTE_OBJECT' text_button_2 = text-045 icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = '' start_column = 25 start_row = 6 IMPORTING answer = return.
BP_START_DATE_EDITOR CALL FUNCTION 'BP_START_DATE_EDITOR' EXPORTING stdt_dialog = btc_yes stdt_input = ls_job-startspecs stdt_opcode = btc_edit_startdate IMPORTING stdt_modify_type = l_modify stdt_output = ls_job-startspecs EXCEPTIONS OTHERS = 1.
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING delanfrep = ' ' jobname = ls_job-job-jobname IMPORTING jobcount = ls_job-job-jobcount EXCEPTIONS cant_create_job = 01 invalid_job_data = 02 jobname_missing = 03.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING at_opmode_periodic = ls_job-startspecs-periodic calendar_id = ls_job-startspecs-calendarid event_id = ls_job-startspecs-eventid event_param = ls_job-startspecs-eventparm event_periodic = ls_job-startspecs-periodic jobcount = ls_job-job-jobcount jobname = ls_job-job-jobname laststrtdt = ls_job-startspecs-laststrtdt laststrttm = ls_job-startspecs-laststrttm prddays = ls_job-startspecs-prddays prdhours = ls_job-startspecs-prdhours prdmins = ls_job-startspecs-prdmins prdmonths = ls_job-startspecs-prdmonths prdweeks = ls_job-startspecs-prdweeks predjob_checkstat = ls_job-startspecs-checkstat pred_jobcount = ls_job-startspecs-predjobcnt pred_jobname = ls_job-startspecs-predjob sdlstrtdt = ls_job-startspecs-sdlstrtdt sdlstrttm = ls_job-startspecs-sdlstrttm startdate_restriction = ls_job-startspecs-prdbehav strtimmed = l_startimmediate start_on_workday_not_before = ls_job-startspecs-notbefore start_on_workday_nr = ls_job-startspecs-wdayno workday_count_direction = ls_job-startspecs-wdaycdir IMPORTING job_was_released = l_job_released EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.