CNVC_SCOL_JOB_RELEASE 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 CNVC_SCOL_JOB_RELEASE 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: P_JOBCNT = Job count
Selection Text: P_JOBNAM = Job name
Title: job release
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BP_JOB_READ CALL FUNCTION 'BP_JOB_READ' EXPORTING job_read_jobcount = p_jobcnt job_read_jobname = p_jobnam job_read_opcode = 19 "btc_read_jobhead_only IMPORTING job_read_jobhead = gs_job_entry TABLES job_read_steplist = gt_steplist EXCEPTIONS job_doesnt_exist = 1 job_doesnt_have_steps = 2.
BP_JOB_MODIFY CALL FUNCTION 'BP_JOB_MODIFY' EXPORTING dialog = 'N' "btc_no jobcount = p_jobcnt jobname = p_jobnam opcode = 17 "btc_release_job release_stdt = gt_release_stdt release_targetserver = gs_job_entry-execserver TABLES new_steplist = gt_steplist EXCEPTIONS cant_derelease_job = 1 cant_enq_job = 2 cant_read_jobdata = 3 cant_release_job = 4 cant_set_jobstatus_in_db = 5 cant_start_job_immediately = 6 cant_update_jobdata = 7 eventcnt_generation_error = 8 invalid_dialog_type = 9 invalid_new_jobdata = 10 invalid_new_jobstatus = 11 invalid_opcode = 12 invalid_startdate = 13 job_edit_failed = 14 job_modify_canceled = 15 job_not_modifiable_anymore = 16 nothing_to_do = 17 no_batch_on_target_host = 18 no_batch_server_found = 19 no_batch_wp_for_jobclass = 20 no_modify_privilege_given = 21 no_release_privilege_given = 22 no_startdate_no_release = 23 target_host_not_defined = 24 tgt_host_chk_has_failed = 25 OTHERS = 26.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.