RWVLB00C is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Reorganization of the condition change pointers for Investment Buying In order to keep the amount of data in the system to a minimum, it is necessary to reorganize data from time to time...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RWVLB00C into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WLBC - Reorganization of Condition Pointers
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: P_DATBI = To Date
Selection Text: R_EKORG = Purchasing Organization
Selection Text: R_LIFNR = Vendor
Selection Text: R_WERKS = Plant
Title: Reorganization of Condition Pointers
Text Symbol: 001 = &1 condition change pointer was deleted
Text Symbol: 002 = The 'not relevant' indicator was set for &1 change pointer(s)
Text Symbol: 003 = Additional Constraints
Text Symbol: 004 = What Date Do You Want to Use?
Text Symbol: 005 = The 'To' Date for Deletion Is In The Future
Text Symbol: 006 = Today's Date
Text Symbol: 007 = Date of Receipt
INCLUDE WVLB00CTOP.
INCLUDE WVLB00CLAY.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-005 diagnose_object = 'RWVLB00C_0001_WARNUNG_1' text_question = text-004 text_button_1 = text-006 * ICON_BUTTON_1 = ' ' text_button_2 = text-007 * ICON_BUTTON_2 = ' ' * DEFAULT_BUTTON = '1' * DISPLAY_CANCEL_BUTTON = 'X' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = l_answer * TABLES * PARAMETER = EXCEPTIONS text_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.