CNV_20100_IC_MAP 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_20100_IC_MAP 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: Program CNV_20100_IC_MAP
INCLUDE: CNV_20100_IC_DATA_INCL.
INCLUDE: CNV_DCII_COMM_GENPROG_D_INCL.
INCLUDE: CNV_20100_DATA_INCLUDE.
INCLUDE CNV_20100_P.
INCLUDE CNV_20100_IC_FORMS_INCL.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_INT_PACKAGE_GET CALL FUNCTION 'CNV_INT_PACKAGE_GET' IMPORTING packid = gc_packid phase = gv_phase EXCEPTIONS active_package_not_found = 1 OTHERS = 2.
CNV_20100_CHECK_CONFIRMED CALL FUNCTION 'CNV_20100_CHECK_CONFIRMED' EXPORTING i_packid = gc_packid IMPORTING e_confirmed = gv_confirmed EXCEPTIONS confirm_not_found = 0 OTHERS = 0.
CNV_20100_GET_MAPPING CALL FUNCTION 'CNV_20100_GET_MAPPING' EXPORTING iv_packid = gc_packid iv_get_from_me = '' "<-- shall be read from original tables IMPORTING ev_timestamp = gv_timestamp TABLES t_chart_of_acc = gt_cnv_coa t_ccode = gt_coa_ccode EXCEPTIONS no_mapping = 1 error = 2 OTHERS = 3.
CNV_20100_GET_LINETYPE CALL FUNCTION 'CNV_20100_GET_LINETYPE' CHANGING cs_acct_linetype = ls_acct_linetype EXCEPTIONS OTHERS = 0.
CNV_20100_GET_MERGES CALL FUNCTION 'CNV_20100_GET_MERGES' EXPORTING it_ic_acc = lt_ic_acc_check IMPORTING et_conflict_merges = gt_ic_acc_conflict.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.