MIG_PROCVAR_COP 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 MIG_PROCVAR_COP 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 MIG_PROCVAR_COP
INCLUDE: LSF00TOP.
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_OBJID_GETLIST CALL FUNCTION 'BAPI_OBJID_GETLIST' EXPORTING quantity = 1 TABLES objectids = p_objectids.
SYSTEM_UUID_C_CREATE CALL FUNCTION 'SYSTEM_UUID_C_CREATE' IMPORTING uuid = p_uuid.
BAPI_PROCDIA_READMULTIPLE CALL FUNCTION 'BAPI_PROCDIA_READMULTIPLE' EXPORTING * CICOREQUESTNO = mode = 'SHOW' * FROMTIMESTAMP = lastuser = space TABLES processdiagramstoread = p_i_proctoread headers = p_i_procheaders nodes = p_i_procnodes lines = p_i_proclines return = p_i_procreturn .
BM_SELECTION_GET CALL FUNCTION 'BM_SELECTION_GET' EXPORTING filter_id = p_i_df55l-filter_id selection_id = p_i_df55l-sel_id * NO_DIALOG = ' ' IMPORTING selection_contents = selection_contents error_occured = error_occured processing_status = processing_status TABLES errors = p_i_errors EXCEPTIONS not_found = 1 OTHERS = 2 .
BAPI_DIAVAR_WRITEMULTIPLE CALL FUNCTION 'BAPI_DIAVAR_WRITEMULTIPLE' EXPORTING cicorequestno = cicorequ mode = c_mode_insert TABLES headers = p_fill_headers activenodes = p_fill_activenodes return = p_fill_return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.