IFVD_STOP_ADMIN_F02 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 IFVD_STOP_ADMIN_F02 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_API_STOP_REM CALL FUNCTION 'FVD_API_STOP_REM' EXPORTING i_bukrs = g_wrk_vdarl-bukrs i_ranl = g_wrk_vdarl-ranl i_gsart = g_wrk_vdarl-gsart * i_stop = l_sav_stop i_application = l_sav_application i_stop_guid = l_sav_stop_guid i_flg_remove_all_stops = g_con_flag_off IMPORTING e_stop_indicator = l_wrk_stop_indicator e_flg_stop_not_active = l_flg_stop_not_active EXCEPTIONS param_invalid = 1 application_invalid = 2 update_error = 3 no_stop_specified = 4 not_authorized = 5 failed = 6 other_error = 7 OTHERS = 9.
POPUP_GET_VALUES CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING popup_title = 'Stopp-Parameter'(002) start_column = '10' start_row = '15' IMPORTING returncode = l_sav_popup_returncode TABLES fields = l_tab_popup_fieldtab EXCEPTIONS error_in_fields = 1 OTHERS = 2.
FVD_API_STOP_SET CALL FUNCTION 'FVD_API_STOP_SET' EXPORTING i_bukrs = g_wrk_vdarl-bukrs i_ranl = g_wrk_vdarl-ranl i_gsart = g_wrk_vdarl-gsart i_stop = l_sav_stop i_stop_valid_from = l_sav_valid_from i_stop_valid_to = l_sav_valid_to i_application = l_sav_application i_flg_allow_duplicates = g_con_flag_on IMPORTING e_stop_indicator = l_wrk_stop_indicator e_flg_stop_already_active = l_flg_stop_already_active EXCEPTIONS param_invalid = 1 stop_invalid = 2 application_invalid = 3 update_error = 4 no_stops_found = 5 not_authorized = 6 failed = 7 other_error = 8 OTHERS = 9.
FVD_API_STOP_GET CALL FUNCTION 'FVD_API_STOP_GET' EXPORTING i_bukrs = g_wrk_vdarl-bukrs i_ranl = g_wrk_vdarl-ranl i_gsart = g_wrk_vdarl-gsart i_application = g_con_appl_stop_admin i_flg_with_lock = u_lock IMPORTING e_tab_stop = g_tab_vdstop_vdarl_a_t e_cnt_stops_active = g_cnt_stops_active e_cnt_stops_inactive = g_cnt_stops_inactive e_cnt_stops_total = g_cnt_stops_total EXCEPTIONS param_invalid = 1 application_invalid = 2 no_stops_found = 3 lock_failed = 4 not_authorized = 5 other_error = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.