FIBIFORM is a standard Executable ABAP Report 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 FIBIFORM 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.
Title: Form routines for view cluster maintenance
INCLUDE LSVCMCOD.
INCLUDE LFIBDDAT.
No SAP DATABASE tables are accessed within this REPORT code!
VIEWCLUSTER_SET_EXCL_CUA_FUNCT CALL FUNCTION 'VIEWCLUSTER_SET_EXCL_CUA_FUNCT' EXPORTING OBJECT = 'V_TBCH41' TABLES EXCL_CUA_FUNCT = FU_TO_EXCL.
VIEWCLUSTER_SET_EXCL_CUA_FUNCT CALL FUNCTION 'VIEWCLUSTER_SET_EXCL_CUA_FUNCT' EXPORTING OBJECT = 'V_TBCH4' TABLES EXCL_CUA_FUNCT = FU_TO_EXCL.
FI_BL_BANKCHAIN_VCL_SET_DATA CALL FUNCTION 'FI_BL_BANKCHAIN_VCL_SET_DATA' EXPORTING I_CHANGED = L_CHANGED TABLES TABLE1 = TOTAL4[] TABLE2 = TOTAL41[].
FI_BL_BANKCHAIN_VCL_GET_DATA CALL FUNCTION 'FI_BL_BANKCHAIN_VCL_GET_DATA' TABLES TABLE1 = L_TOTAL4 TABLE2 = L_TOTAL41.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING * CORR_NUMBER = ' ' FCODE = 'READ' VIEW_ACTION = VCL_ACTION VIEW_NAME = 'v_tbch4' * RFC_DESTINATION_FOR_UPGRADE = ' ' * CLIENT_FOR_UPGRADE = ' ' * COMPLEX_SELCONDS_USED = ' ' * NO_WARNING_FOR_CLIENTINDEP = ' ' * IMPORTING * LAST_ACT_ENTRY = * UCOMM = * UPDATE_REQUIRED = * CORR_NUMBER = * ACTION_OUT = TABLES CORR_KEYTAB = L_T_E071K DBA_SELLIST =
DPL_SELLIST = EXCL_CUA_FUNCT = FU_TO_EXCL EXTRACT = TOTAL = X_HEADER = X_NAMTAB = EXCEPTIONS FUNCTION_NOT_FOUND = 1 MISSING_CORR_NUMBER = 2 NO_VALUE_FOR_SUBSET_IDENT = 3 SAVING_CORRECTION_FAILED = 4 OTHERS = 5.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING * CORR_NUMBER = ' ' FCODE = 'READ' VIEW_ACTION = VCL_ACTION VIEW_NAME = 'v_tbch41' * RFC_DESTINATION_FOR_UPGRADE = ' ' * CLIENT_FOR_UPGRADE = ' ' * COMPLEX_SELCONDS_USED = ' ' * NO_WARNING_FOR_CLIENTINDEP = ' ' * IMPORTING * LAST_ACT_ENTRY = * UCOMM = * UPDATE_REQUIRED = * CORR_NUMBER = * ACTION_OUT = TABLES CORR_KEYTAB = L_T_E071K DBA_SELLIST =
DPL_SELLIST = EXCL_CUA_FUNCT = FU_TO_EXCL EXTRACT = TOTAL = X_HEADER = X_NAMTAB = EXCEPTIONS FUNCTION_NOT_FOUND = 1 MISSING_CORR_NUMBER = 2 NO_VALUE_FOR_SUBSET_IDENT = 3 SAVING_CORRECTION_FAILED = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.