VEG_CNV_BATCHJOB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to trigger the conversion of the registered documents that are selected for conversion...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter VEG_CNV_BATCHJOB into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
VEG_BATCHJOB - Start conversion via batch job
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_APPL = Application Type
Selection Text: P_BLKCNT = Jobs per Block
Selection Text: P_JOBCNT = Total No of Jobs
Title: Batch Job for Conversion
Text Symbol: 001 = Batch Job Input
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_E_DMS_REG_LOCK CALL FUNCTION 'ENQUEUE_E_DMS_REG_LOCK' EXPORTING mode_veg_reg = abap_true mandt = sy-mandt appid = p_appl EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_E_DMS_REG_LOCK CALL FUNCTION 'DEQUEUE_E_DMS_REG_LOCK' EXPORTING mode_veg_reg = abap_true mandt = sy-mandt appid = p_appl.
VEG_LOG_MSG CALL FUNCTION 'VEG_LOG_MSG' EXPORTING iv_object = 'VEG' iv_sub_object = lv_subobj it_msg = lt_msg.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.