CO_ML_VAPPF03 is a standard ABAP INCLUDE 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 CO_ML_VAPPF03 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CM_F_INITIALIZE CALL FUNCTION 'CM_F_INITIALIZE' EXPORTING * ABORT_MSGTY = 'A' aplid = 'ACT ' * MSG_ON_SCREEN = ' ' OBJECT_ID = 'CK1 ' * OCS_ACTIV = ' ' * REFRESH_OLD_LOG = 'X' * SMSG_INITIALIZE = ' ' * NO_OTHER_INITIALIZE = ' ' * NO_DISPLAY_ON_ABORT = ' ' * IMPORTING * INITIALIZE_NOT_ALLOWED = * SMSG_IDENTIFICATION = * EXCEPTIONS * MESSAGE_TYPE_NOT_VALID = 1 * UNKNOWN_APLID = 2 * UNKNOWN_OBJECT_ID = 3 * OTHERS = 4 .
CM_F_INFO CALL FUNCTION 'CM_F_INFO' * EXPORTING * ALL = 'X' * APLID = ' ' * OBJECT = ' ' * OBJECT_ID = ' ' * WILDCARD_SEARCH = ' ' IMPORTING * APLIDENT = * A_MSG_COUNTER_PRO = * A_MSG_COUNTER_SCR = * E_MSG_COUNTER_PRO = * E_MSG_COUNTER_SCR = * I_MSG_COUNTER_PRO = * I_MSG_COUNTER_SCR = * MAX_SEVERITY_PRO = * MAX_SEVERITY_SCR = * MSGTY_PRO = * MSGTY_SCR = msg_counter_pro = h_msg_counter_pro1.
CM_F_DISPLAY_LOG CALL FUNCTION 'CM_F_DISPLAY_LOG' EXPORTING * APLID = ' ' * HEADLINE = ' ' * OCS_ACTIV = ' ' * OCS_SEND_IMMEDIATE = ' ' skip_info_screen = h_skip_info_screen1 * DISPLAY_IN_NEW_TASK = ' ' * TITLEBAR = ' ' * TITLE = ' ' * OBJECT = ' ' * WITH_OBJECTINDEPENDENT = 'X' * ADDITIONAL_INFO = * MSG_EXITCALL_ICON = ' ' grid_display = 'X' alv_variant = ckru0_co_msg_alv_variant.
CM_F_STORE CALL FUNCTION 'CM_F_STORE' EXPORTING aplid = 'ACT ' in_update_task = 'X' IMPORTING e_cmf_nr = l_protocol_number EXCEPTIONS OTHERS = 1.
CM_F_MESSAGE CALL FUNCTION 'CM_F_MESSAGE' EXPORTING arbgb = 'C+' msgnr = '718' msgty = 'I' msgv1 = l_protocol_number EXCEPTIONS OTHERS = 0.
CM_F_MESSAGE CALL FUNCTION 'CM_F_MESSAGE' EXPORTING arbgb = 'C+' msgnr = '719' msgty = 'E' EXCEPTIONS OTHERS = 0.
K_BATCH_REQUEST CALL FUNCTION 'K_BATCH_REQUEST' EXPORTING par_dialg = 'X' par_jname = l_jobname par_print = 'X' par_rname = l_repid "#EC DOM_EQUAL par_sdmsg = 'X' par_abend = 'X' TABLES tab_selpa = lt_selektionen.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.