ORDERDOWNJOB 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 ORDERDOWNJOB 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.
Title: Include ORDERDOWNJOB
INCLUDE LBTCHDEF.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_DECIDE call function 'POPUP_TO_DECIDE' exporting defaultoption = '2' textline1 = text-003 * D:'Wollen Sie den gerade angelegten' textline2 = text-004 * D:'Hintergrundjob noch einmal' textline3 = text-005 * D:'anzeigen oder ändern?' text_option1 = text-s10 * D:'Ja' text_option2 = text-s11 * D:'Nein' titel = text-t02 * D:'Hintergrundjob Ableseaufträge' * START_COLUMN = 25 * START_ROW = 6 cancel_display = co_flag_notmarked importing answer = answer exceptions others = 1.
RS_VARIANT_CATALOG call function 'RS_VARIANT_CATALOG' exporting report = co_rep_name new_title = text-t01 importing sel_variant = y_variant * SEL_VARIANT_TEXT = exceptions no_report = 1 report_not_existent = 2 report_not_supplied = 3 no_variants = 4 others = 5.
JOB_OPEN call function 'JOB_OPEN' exporting * DELANFREP = ' ' * JOBGROUP = ' ' jobname = x_jobname * SDLSTRTDT = NO_DATE * SDLSTRTTM = NO_TIME importing jobcount = y_jobcount exceptions cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 others = 4.
BP_START_DATE_EDITOR call function 'BP_START_DATE_EDITOR' exporting stdt_dialog = btc_yes stdt_input = xy_start_date stdt_opcode = btc_edit_startdate importing stdt_modify_type = stdt_modify_type stdt_output = xy_start_date exceptions fcal_id_not_defined = 1 incomplete_last_startdate = 2 incomplete_startdate = 3 invalid_dialog_type = 4 invalid_eventid = 5 invalid_opcode = 6 invalid_opmode_name = 7 invalid_periodbehaviour = 8 invalid_predecessor_jobname = 9 last_startdate_in_the_past = 10 no_period_data_given = 11 no_startdate_given = 12 period_and_predjob_no_way = 13 period_too_small_for_limit = 14 predecessor_jobname_not_unique = 15 startdate_interval_too_large = 16 startdate_in_the_past = 17 startdate_is_a_holiday = 18 startdate_out_of_fcal_range = 19 stdt_before_holiday_in_past = 20 unknown_fcal_error_occured = 21 no_workday_nr_given = 22 invalid_workday_countdir = 23 invalid_workday_nr = 24 notbefore_stdt_missing = 25 workday_starttime_missing = 26 no_eventid_given = 27 others = 28.
BP_JOB_DELETE call function 'BP_JOB_DELETE' exporting * FORCEDMODE = ' ' jobcount = x_jobcount jobname = x_jobname exceptions cant_delete_event_entry = 1 cant_delete_job = 2 cant_delete_joblog = 3 cant_delete_steps = 4 cant_delete_time_entry = 5 cant_derelease_successor = 6 cant_enq_predecessor = 7 cant_enq_successor = 8 cant_enq_tbtco_entry = 9 cant_update_predecessor = 10 cant_update_successor = 11 commit_failed = 12 jobcount_missing = 13 jobname_missing = 14 job_does_not_exist = 15 job_is_already_running = 16 no_delete_authority = 17 others = 18.
BP_JOB_SELECT call function 'BP_JOB_SELECT' exporting jobselect_dialog = btc_no jobsel_param_in = select_info importing jobsel_param_out = select_info tables jobselect_joblist = t_joblist exceptions invalid_dialog_type = 1 jobname_missing = 2 no_jobs_found = 3 selection_canceled = 4 username_missing = 5 others = 6.
JOB_SUBMIT call function 'JOB_SUBMIT' exporting * ARCPARAMS = ' ' authcknam = sy-uname * EXTPGM_NAME = ' ' * EXTPGM_PARAM = ' ' * EXTPGM_SET_TRACE_ON = ' ' * EXTPGM_STDERR_IN_JOBLOG = 'X' * EXTPGM_STDOUT_IN_JOBLOG = 'X' * EXTPGM_SYSTEM = ' ' * EXTPGM_WAIT_FOR_TERMINATION = 'X' jobcount = x_jobcount jobname = x_jobname * LANGUAGE = SY-LANGU * PRIPARAMS = ' ' report = co_rep_name variant = x_variant * IMPORTING * STEP_NUMBER = exceptions bad_priparams = 1 bad_xpgflags = 2 invalid_jobdata = 3 jobname_missing = 4 job_notex = 5 job_submit_failed = 6 lock_failed = 7 program_missing = 8 prog_abap_and_extpg_set = 9 others = 10.
JOB_CLOSE call function 'JOB_CLOSE' exporting * AT_OPMODE = ' ' * AT_OPMODE_PERIODIC = ' ' calendar_id = x_start_date-calendarid event_id = x_start_date-eventid event_param = x_start_date-eventparm event_periodic = x_start_date-periodic jobcount = x_jobcount jobname = x_jobname laststrtdt = x_start_date-laststrtdt laststrttm = x_start_date-laststrttm prddays = x_start_date-prddays prdhours = x_start_date-prdhours prdmins = x_start_date-prdmins prdmonths = x_start_date-prdmonths prdweeks = x_start_date-prdweeks predjob_checkstat = x_start_date-checkstat pred_jobcount = x_start_date-predjobcnt pred_jobname = x_start_date-predjob sdlstrtdt = x_start_date-sdlstrtdt sdlstrttm = x_start_date-sdlstrttm startdate_restriction = x_start_date-prdbehav strtimmed = x_start_date_immediate targetsystem = x_start_date-instname start_on_workday_not_before = x_start_date-notbefore start_on_workday_nr = x_start_date-wdayno workday_count_direction = x_start_date-wdaycdir importing job_was_released = y_job_was_released exceptions cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 others = 8.
BP_JOBLIST_PROCESSOR call function 'BP_JOBLIST_PROCESSOR' exporting joblist_opcode = btc_joblist_edit * JOBLIST_REFR_PARAM = ' ' * IMPORTING * JOBLIST_SEL_JOB = tables joblist = joblist exceptions invalid_opcode = 1 joblist_is_empty = 2 joblist_processor_canceled = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.