RVBBTREE 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 RVBBTREE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
DVMAN - Perform Manual Derivation
MSC5N - Mass Processing for Batches
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: WORKONLY = Display worklist only
Selection Text: SO_WERKS = D Plant
Selection Text: SO_MATNR = D Material
Selection Text: SO_CHARG = D Batch
Selection Text: SHOWWORK = Display Worklist
Selection Text: P_WERKS = Plant
Selection Text: DB_LIMIT = Maximum Number of Batches
Title: Mass Processing of Batches
Text Symbol: 028 = Show hidden nodes
Text Symbol: 027 = Hide selected nodes
Text Symbol: 026 = Expand / collapse worklist
Text Symbol: 025 = Refresh
Text Symbol: 024 = Delete selected entries
Text Symbol: 023 = Copy selected entries
Text Symbol: 022 = Selection in folder
Text Symbol: 021 = Collapse all nodes
Text Symbol: 020 = Expand all nodes
Text Symbol: 010 = limited
Text Symbol: 009 = Selection result &3 (&1 &2)
Text Symbol: 007 = Move selection to folder
Text Symbol: 006 = Copy selection to folder
Text Symbol: 005 = Collapse subtree
Text Symbol: 004 = Expand Subtree
Text Symbol: 003 = Display batch
Text Symbol: 002 = Change Batch
Text Symbol: 001 = Selection
Text Symbol: 099 = Material short text does not exist in logon language
Text Symbol: 100 = Batch
Text Symbol: 101 = Batches
Text Symbol: DRV = Perform Derivation
Text Symbol: DVT = Manual Derivation of Batch Data
Text Symbol: NXT = Next Batch
Text Symbol: PRV = Previous Batch
Text Symbol: WRK = Plant
Text Symbol: SWT = Display/Change
Text Symbol: SAV = Save
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VB_BATCH_DEFINITION CALL FUNCTION 'VB_BATCH_DEFINITION' IMPORTING kzdch = batch_level kzdrv = derivation.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'MSC3N' EXCEPTIONS ok = 0 not_ok = 2 OTHERS = 99.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'MSC2N' EXCEPTIONS ok = 0 not_ok = 2 OTHERS = 99.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = lv_pfstatus p_program = lv_repid TABLES p_exclude = lt_exclude.
SUSR_USER_ADDRESS_READ CALL FUNCTION 'SUSR_USER_ADDRESS_READ' EXPORTING user_name = sy-uname IMPORTING user_address = gs_user_adress EXCEPTIONS user_address_not_found = 1 OTHERS = 2.
CONTROL_INIT CALL FUNCTION 'CONTROL_INIT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.