MF67QSAV 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 MF67QSAV 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!
FVD_TABLE_INIT CALL FUNCTION 'FVD_TABLE_INIT' EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET_DIRECT CALL FUNCTION 'FVD_TABLE_SET_DIRECT' EXPORTING i_tablename = 'VDGPO' i_mode = con_delete i_wrk_tab = *vdgpo EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET_DIRECT CALL FUNCTION 'FVD_TABLE_SET_DIRECT' EXPORTING i_tablename = 'VDGPO' i_mode = con_insert i_wrk_tab = vdgpo EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLSS' i_wrk_old = *vdblss i_wrk_new = vdblss EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLSWT' i_wrk_old = *vdblswt i_wrk_new = vdblswt EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLEW' i_wrk_old = *vdblew i_wrk_new = vdblew EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLBAW' i_tab_old = l_tab_vdblbaw_old i_tab_new = l_tab_vdblbaw_new EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLBOW' i_tab_old = l_tab_vdblbow_old[] i_tab_new = l_tab_vdblbow_new[] EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLREW' i_tab_old = l_tab_vdblrew_old[] i_tab_new = l_tab_vdblrew_new[] EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDBLBEWI' i_tab_old = l_tab_vdblbewi_old[] i_tab_new = l_tab_vdblbewi_new[] EXCEPTIONS OTHERS = 1.
FVD_TABLE_INFORM CALL FUNCTION 'FVD_TABLE_INFORM' EXPORTING i_tablename = 'VDBLBEWI' IMPORTING e_flg_table_update = l_flg_update EXCEPTIONS OTHERS = 1.
FVD_TABLE_INFORM CALL FUNCTION 'FVD_TABLE_INFORM' IMPORTING e_flg_update = c_flg_update EXCEPTIONS OTHERS = 1.
FVD_TABLE_SET CALL FUNCTION 'FVD_TABLE_SET' EXPORTING i_tablename = 'VDHOBJBL' i_flg_save = 'X' i_wrk_old = *vdhobjbl i_wrk_new = vdhobjbl EXCEPTIONS OTHERS = 1.
FVD_TABLE_UPDATE CALL FUNCTION 'FVD_TABLE_UPDATE' EXPORTING i_flg_update_task = space i_flg_change_document = 'X' EXCEPTIONS OTHERS = 1.
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING nr_range_nr = '01' object = 'FVVD_RBLNR' IMPORTING number = vdhobjbl-rblnr * returncode = ret_code EXCEPTIONS interval_not_found = 1 number_range_not_intern = 2 object_not_found = 3 quantity_is_0 = 4.
USERFIELDS_SAVE CALL FUNCTION 'USERFIELDS_SAVE' EXPORTING delete_usrdata = del_userdata sobjekt = vzsort-sobjekt usrdata_new = vzsort usrdata_old = *vzsort EXCEPTIONS db_operation_error = 01.
FVD_TABLE_INFORM CALL FUNCTION 'FVD_TABLE_INFORM' IMPORTING e_tab_update_info = l_tab_update_info 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.