IFVICK_UPDATE3 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 IFVICK_UPDATE3 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!
FVAK_SPLIT_AREA CALL FUNCTION 'FVAK_SPLIT_AREA' TABLES t_flaechen = lt_area t_xviob40 = lt_viob40 t_xviob41 = lt_viob41 EXCEPTIONS OTHERS = 0.
FVAK_SPLIT_AREA CALL FUNCTION 'FVAK_SPLIT_AREA' TABLES t_flaechen = lt_area_db t_xviob40 = lt_viob40_db t_xviob41 = lt_viob41_db EXCEPTIONS OTHERS = 0.
CHANGEDOCUMENT_PREPARE_TABLES CALL FUNCTION 'CHANGEDOCUMENT_PREPARE_TABLES' EXPORTING * CHECK_INDICATOR = ' ' tablename = 'VIOB40' IMPORTING result = lc_result TABLES table_new = lt_viob40 table_old = lt_viob40_db EXCEPTIONS OTHERS = 0.
VIOB40_VERBUCHER CALL FUNCTION 'VIOB40_VERBUCHER' IN UPDATE TASK EXPORTING funktion = lt_viob40_db-kz i_viob40 = wa_area EXCEPTIONS OTHERS = 0.
VIOB40_VERBUCHER CALL FUNCTION 'VIOB40_VERBUCHER' IN UPDATE TASK EXPORTING funktion = lt_viob40-kz i_viob40 = wa_area EXCEPTIONS OTHERS = 0.
CHANGEDOCUMENT_PREPARE_TABLES CALL FUNCTION 'CHANGEDOCUMENT_PREPARE_TABLES' EXPORTING * CHECK_INDICATOR = ' ' tablename = 'VIOB41' IMPORTING result = lc_result TABLES table_new = lt_viob41 table_old = lt_viob41_db EXCEPTIONS OTHERS = 0.
VIOB41_VERBUCHER CALL FUNCTION 'VIOB41_VERBUCHER' IN UPDATE TASK EXPORTING funktion = lt_viob41_db-kz i_viob41 = wa_area_hist EXCEPTIONS OTHERS = 0.
VIOB41_VERBUCHER CALL FUNCTION 'VIOB41_VERBUCHER' IN UPDATE TASK EXPORTING funktion = lt_viob41-kz i_viob41 = wa_area_hist EXCEPTIONS OTHERS = 0.
CHANGEDOCUMENT_PREPARE_TABLES CALL FUNCTION 'CHANGEDOCUMENT_PREPARE_TABLES' EXPORTING * CHECK_INDICATOR = ' ' tablename = 'VIOB37' IMPORTING result = lb_result TABLES table_new = pt_viob37 table_old = pt_viob37_db EXCEPTIONS OTHERS = 0.
VIOB37_VERBUCHER CALL FUNCTION 'VIOB37_VERBUCHER' IN UPDATE TASK EXPORTING funktion = pt_viob37_db-kz i_viob37 = wa_viob37 EXCEPTIONS OTHERS = 0.
VIOB37_VERBUCHER CALL FUNCTION 'VIOB37_VERBUCHER' IN UPDATE TASK EXPORTING funktion = pt_viob37-kz i_viob37 = wa_viob37 EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.