FBRCVIM00 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 FBRCVIM00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FBRC011 - Application ID Maintenance
FBRC010 - Contact Database Maintenance
FBRC009 - Set Up Display Categories
FBRC008 - Maintain Field Catalogs
FBRC007 - Reconciliation Process Attributes
FBRC006 - Define Possible Status for Documents
FBRC005 - Define Rules for Document Assignment
FBRC004 - Define Sets
FBRC003 - Set Up Reconciliation Display
FBRC002 - Maintain Placeholders
FBRC001 - Maintain Message Templates
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.
Selection Text: PA_VNAME = View Name
Selection Text: PA_VAL9 = Value 9
Selection Text: PA_VAL8 = Value 8
Selection Text: PA_VAL7 = Value 7
Selection Text: PA_VAL6 = Value 6
Selection Text: PA_VAL5 = Value 5
Selection Text: PA_VAL4 = Value 4
Selection Text: PA_VAL3 = Value 3
Selection Text: PA_VAL2 = Value 2
Selection Text: PA_VAL12 = Value 12
Selection Text: PA_VAL11 = Value 11
Selection Text: PA_VAL10 = Value 10
Selection Text: PA_VAL1 = Value 1
Selection Text: PA_FLD9 = Field 9
Selection Text: PA_FLD8 = Field 8
Selection Text: PA_FLD7 = Field 7
Selection Text: PA_FLD6 = Field 6
Selection Text: PA_FLD5 = Field 5
Selection Text: PA_FLD4 = Field 4
Selection Text: PA_FLD3 = Field 3
Selection Text: PA_FLD2 = Field 2
Selection Text: PA_FLD12 = Field 12
Selection Text: PA_FLD11 = Field 11
Selection Text: PA_FLD10 = Field 10
Selection Text: PA_FLD1 = Field 1
Selection Text: PA_ACT = Action
Title: Call up View Maintenance and View Cluster Maintenance
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VIEWCLUSTER_GET_DEFINITION CALL FUNCTION 'VIEWCLUSTER_GET_DEFINITION' EXPORTING vclname = pa_vname TABLES vclstruc_tab = lt_vclstruc EXCEPTIONS viewcluster_not_found = 1.
VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING viewname = gd_vname TABLES x_header = it_header x_namtab = it_namtab sellist = it_sellist.
VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING view_name = gd_vname action = 'E' "Exklusiv sperren enqueue_mode = 'E' "E-Enqueue/D-Dequeue enqueue_range = 'X' "Eingeschränkt sperren:it_sellist TABLES sellist = it_sellist EXCEPTIONS foreign_lock = 1 client_reference = 2 system_failure = 3 table_not_found = 4.
VIEW_MAINTENANCE CALL FUNCTION 'VIEW_MAINTENANCE' EXPORTING view_name = pa_vname view_action = pa_act TABLES x_header = it_header x_namtab = it_namtab dba_sellist = it_sellist excl_cua_funct = it_ftab EXCEPTIONS no_value_for_subset_ident = 1.
VIEWCLUSTER_MAINTENANCE_CALL CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL' EXPORTING viewcluster_name = pa_vname maintenance_action = pa_act TABLES excl_cua_funct_all_objects = it_ftab dba_sellist_cluster = lt_sellist_cl EXCEPTIONS foreign_lock = 01.
VIEWCLUSTER_MAINTENANCE_CALL CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL' EXPORTING viewcluster_name = pa_vname maintenance_action = pa_act TABLES excl_cua_funct_all_objects = it_ftab dba_sellist = it_sellist EXCEPTIONS foreign_lock = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.