MSVIMF35 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 MSVIMF35 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!
RS_DD_DELETE CALL FUNCTION 'RS_DD_DELETE' EXPORTING objname = ddic_structure objtype = rs_dd_type EXCEPTIONS name_not_valid = 01 not_executed = 02 object_not_found = 03 object_not_specified = 04 permission_failure = 05.
DD_CHECK_NAME CALL FUNCTION 'DD_CHECK_NAME' EXPORTING name = v_name " VIMDYNFLDS-VIEWNAME * NAME2 = ' ' objtyp = objecttype subtyp = subtype * NO_EXI_CHECK = ' ' * NO_CREATE_CHECK = ' ' * ACTIVE_ONLY = ' ' IMPORTING * TYP_CONFLICT = * SAA_CONFLICT = * OBJ_EXISTS = msg_flag = msg_flag EXCEPTIONS unknown_objtype = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = name state = state langu = sy-langu IMPORTING gotstate = dd_state dd02v_wa = dd_dd02v * DD09L_WA = TABLES dd03p_tab = dd_dd03p * DD05M_TAB = * DD08V_TAB = * DD12V_TAB = * DD17V_TAB = EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_VIEW_GET CALL FUNCTION 'DDIF_VIEW_GET' EXPORTING name = name state = state langu = sy-langu IMPORTING gotstate = dd_state dd25v_wa = dd_dd25v * DD09L_WA = TABLES dd26v_tab = dd_dd26v_temp dd27p_tab = dd_dd27p * DD28J_TAB = * DD28V_TAB = EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = dd_dd26v_temp-tabname state = state langu = sy-langu IMPORTING * gotstate = dd_state dd02v_wa = dd_dd02v_temp * DD09L_WA = * TABLES * dd03p_tab = dd_dd03p * DD05M_TAB = * DD08V_TAB = * DD12V_TAB = * DD17V_TAB = EXCEPTIONS illegal_input = 1 OTHERS = 2.
DD_DOMVALUE_TEXT_GET CALL FUNCTION 'DD_DOMVALUE_TEXT_GET' EXPORTING domname = domname value = domval langu = sy-langu * BYPASS_BUFFER = ' ' IMPORTING dd07v_wa = dd_dd07v_wa rc = subrc EXCEPTIONS OTHERS = 0.
NAMETAB_GET CALL FUNCTION 'NAMETAB_GET' EXPORTING langu = sy-langu only = 'X' tabname = tabname IMPORTING header = header TABLES nametab = nametab EXCEPTIONS internal_error = 1 table_has_no_fields = 2 table_not_activ = 3 no_texts_found = 4 OTHERS = 5.
DDIF_VIEW_GET CALL FUNCTION 'DDIF_VIEW_GET' EXPORTING name = tabname state = 'A' langu = sy-langu IMPORTING dd25v_wa = view_wa EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = tabname state = 'A' langu = sy-langu IMPORTING dd02v_wa = tabl_wa EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = w_dd08l-tabname TABLES dfies_tab = p_dfies_tab_txt EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.