RVBBWULS 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 RVBBWULS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MB56 - Analyze batch where-used list
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_ARC = D .
Selection Text: O_SYSID = D .
Selection Text: O_MANDT = D .
Selection Text: SO_PLANT = Valid Plants
Selection Text: PA_WERKS = Plant
Selection Text: PA_TRFPO = Expand Transfer Postings
Selection Text: PA_TPDN = Top-Down Analysis
Selection Text: PA_SYS = Cross-System Functions
Selection Text: PA_SEL = Extended Selection
Selection Text: PA_PRE = Planned Goods Movements
Selection Text: PA_N2M = Multibatch Evaluation
Selection Text: PA_MATNR = Material Number
Selection Text: PA_LEVEL = Expansion Level
Selection Text: PA_KZNUL = Expand Even If Quantity = 0
Selection Text: PA_CHLAL = Check Assignment of Insp. Lot
Selection Text: PA_CHARG = Batch
Selection Text: PA_BTUP = Bottom-Up Analysis
Selection Text: PA_ALCOA = Expand CO Order
Selection Text: PA_ALBTC = Display Vendor Batch
Selection Text: PA_AKZUS = Display Current Batch Status
Title: Display Batch Where-Used List
Text Symbol: U00 = Original Batch
Text Symbol: 103 = Type of Expansion
Text Symbol: 100 = Batch Where-Used List
Text Symbol: 050 = Settings for Extended Display
Text Symbol: 042 = Hierarchical List
Text Symbol: 041 = Hierarchical Tree Structure
Text Symbol: 040 = Display Format
Text Symbol: 026 = Settings
Text Symbol: 025 = Starting Point of Expansion
INCLUDE RVBBWULS0100.
No SAP DATABASE tables are accessed within this REPORT code!
VB_BATCH_DEFINITION CALL FUNCTION 'VB_BATCH_DEFINITION' IMPORTING kzdch = batch_level kzdzv = kzdzv.
N2M_ENABLED_CHECK CALL FUNCTION 'N2M_ENABLED_CHECK' IMPORTING e_kzn2m = kzn2m.
PRE_ENABLED_CHECK CALL FUNCTION 'PRE_ENABLED_CHECK' IMPORTING e_kzpre = kzpre.
SYS_ENABLED_CHECK CALL FUNCTION 'SYS_ENABLED_CHECK' IMPORTING e_kzsys = kzsys.
CHVW_BATCH_WHERE_USED_LIST CALL FUNCTION 'CHVW_BATCH_WHERE_USED_LIST' EXPORTING i_matnr = pa_matnr i_werks = pa_werks i_charg = pa_charg i_dfchvw = dfchvw i_container_ctrl = container_ctrl i_legend = 'X' i_support_dragging = ' ' i_batch_type = gv_batch_type i_orig_mandt = o_mandt i_orig_sysid = o_sysid TABLES t_plants = so_plant EXCEPTIONS OTHERS = 99.
CHVW_DYNPRO_EVENT_HANDLER CALL FUNCTION 'CHVW_DYNPRO_EVENT_HANDLER' EXPORTING code = save_ok EXCEPTIONS code_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.