CNV_12000_UPDATE 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 CNV_12000_UPDATE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CNV_12000_UPDATE - Update Text Objects after Conversion
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: Program CNV_12000_UPDATE
Text Symbol: 030 = No Execution package found
Text Symbol: 031 = RFC problems detected
Text Symbol: 032 = Execution package is not active
Text Symbol: 033 = Execution not possible
Text Symbol: 034 = No RFC destination found for Packid: &1
Text Symbol: 035 = No Destination type for Destination found
Text Symbol: 036 = System info failure detected
Text Symbol: 037 = RFC failure detected
Text Symbol: 038 = System info has changed
Text Symbol: 039 = Log in into execution system failed
Text Symbol: 040 = Wrong unicode settings at execution system
INCLUDE CNV_MBT_SM_PARAMS_NODISPLAY.
INCLUDE CNV_MBT_SM_MACROS_WITH_LOGGER.
INCLUDE CNV_12000_UPDATE_CLASS.
INCLUDE CNV_12000_INCLUDE_PARAMETERS.
INCLUDE CNV_12000_INCLUDE_DATA.
INCLUDE CNV_12000_INCLUDE_COT.
INCLUDE CNV_12000_INCLUDE_PIFD.
INCLUDE CNV_12000_UPDATE_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_CWB_EXEC_PACK_GET CALL FUNCTION 'CNV_MBT_CWB_EXEC_PACK_GET' EXPORTING i_packid = gd_packid i_check_active = 'X' IMPORTING e_exec_pack = gd_cwb_packid EXCEPTIONS no_package_found = 1 rfc_problems = 2 exec_pack_not_active = 3 OTHERS = 4.
CNV_MBT_CWB_STATE_SET CALL FUNCTION 'CNV_MBT_CWB_STATE_SET' DESTINATION gd_dest EXPORTING iv_cwbpack = gd_cwb_packid iv_cwbphase = gd_cwb_phase iv_cwbprog = gd_cwb_progname iv_cwbtab = gd_cwb_tabname * it_messages = gt_messages iv_insert_state_entry = 'X' EXCEPTIONS state_init_failed = 1 OTHERS = 2.
CNV_MBT_CWB_EXEC_PACK_GET CALL FUNCTION 'CNV_MBT_CWB_EXEC_PACK_GET' EXPORTING i_packid = gd_packid i_check_active = 'X' IMPORTING e_exec_pack = gd_cwb_packid EXCEPTIONS no_package_found = 1 rfc_problems = 2 exec_pack_not_active = 3 OTHERS = 4.
CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING packid = gd_packid exec_target = 'E' * ALL_AS_TABLE = 'X' * NONE_AT_LOCAL_DEST = 'X' IMPORTING destination_id = gd_dest * UNICODE_ERROR = * TABLES * DESTTAB = EXCEPTIONS no_destinations_for_packid = 1 no_specific_destination_type = 2 get_system_info_failure = 3 rfc_failure = 4 system_info_has_changed = 5 login_not_possible = 6 wrong_unicode_settings = 7 OTHERS = 8 .
CNV_12000_SET_TEXTS CALL FUNCTION 'CNV_12000_SET_TEXTS' DESTINATION gd_dest EXPORTING ld_packid = gd_packid ld_struc = gd_struc ld_det_log = gd_det_log ld_interface = gd_interface ld_phase = gd_cwb_phase ld_progname = gd_cwb_progname TABLES lt_define = gt_define lt_info = gt_info lt_hiera = gt_hiera lt_text_upd = gt_text_upd lt_text_del = gt_text_del lt_msg = gt_msg CHANGING ld_upd_stat = gd_upd_stat ld_exit = gd_exit EXCEPTIONS no_authorization = 1 OTHERS = 2.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
CNV_MBT_CWB_STATE_SET CALL FUNCTION 'CNV_MBT_CWB_STATE_SET' DESTINATION gd_dest EXPORTING iv_cwbpack = gd_packid iv_cwbphase = cwbphase iv_cwbprog = cwbprog iv_cwbtab = cwbtab it_messages = gt_msg_logger iv_insert_state_entry = 'X' EXCEPTIONS state_init_failed = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CNV_12000_UPDATE - Program CNV_12000_UPDATE CNV_12000_UPDATE - Program CNV_12000_UPDATE CNV_12000_TEXT_MAPPING_PBO - PBO Modules for Preparation of Texts for Conversion CNV_12000_TEXT_MAPPING_PAI - PAI Modules for Preparation of Texts for Conversion CNV_12000_TEXT_MAPPING_MAP - Include CNV_12000_PROCESS_MAP CNV_12000_TEXT_MAPPING_FORMS - Form Routines for Conversion Prepatation of Texts