RFVISETBEBASEF01 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 RFVISETBEBASEF01 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!
ENQUEUE_EVIBEBASE CALL FUNCTION 'ENQUEUE_EVIBEBASE' EXPORTING mode_vibebase = 'E' mandt = sy-mandt corbaseguid = gs_vibebase-corbaseguid * X_CORBASEGUID = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3
.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gd_repid * i_internal_tabname = 'GT_ALVTABLE' i_structure_name = 'VVVIBEBASE_ALV' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = rt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
POPUP_SET_BASE CALL FUNCTION 'POPUP_SET_BASE' EXPORTING i_rvibebase = ls_rvibebase i_action = ' ' IMPORTING e_rvibebase = ls_rvibebase.
POPUP_SET_BASE CALL FUNCTION 'POPUP_SET_BASE' EXPORTING i_rvibebase = ls_rvibebase i_action = ld_action IMPORTING e_rvibebase = ls_rvibebase_new e_cancel = ld_cancel. "note 918187
POPUP_SET_BASE CALL FUNCTION 'POPUP_SET_BASE' EXPORTING i_rvibebase = ls_rvibebase i_action = 'M' IMPORTING e_rvibebase = ls_rvibebase e_cancel = ld_cancel. "note 918187
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = ld_guid.
POPUP_SET_BASE CALL FUNCTION 'POPUP_SET_BASE' EXPORTING i_rvibebase = ls_rvibebase i_action = 'A' IMPORTING e_rvibebase = ls_rvibebase e_cancel = ld_cancel. "note 918187
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = ld_guid.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-sic text_question = text-frg text_button_1 = text-ja1 text_button_2 = text-nei default_button = '1' display_cancel_button = ' ' IMPORTING answer = ld_answer.
DEQUEUE_EVIBEBASE * CALL FUNCTION 'DEQUEUE_EVIBEBASE' * EXPORTING * mode_vibetaxd = 'E'.
POPUP_SET_ITEM CALL FUNCTION 'POPUP_SET_ITEM' EXPORTING i_rvibebase = ls_rvibebase i_action = 'O'. "Old Altdaten
CHANGEDOCUMENT_PREPARE_TABLES CALL FUNCTION 'CHANGEDOCUMENT_PREPARE_TABLES' EXPORTING check_indicator = ' ' tablename = 'VIBEBASE' IMPORTING RESULT = ld_result TABLES table_new = gt_vibebase_new table_old = gt_vibebase_old.
RE_BE_UPDATE CALL FUNCTION 'RE_BE_UPDATE' IN UPDATE TASK TABLES xvibebase = gt_vibebase_new.
FVAU_AUTHORITY_CHECK CALL FUNCTION 'FVAU_AUTHORITY_CHECK' EXPORTING object = auth_object authpar = authpar EXCEPTIONS no_authority = 1 invalid_object = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.