RWRECLA3 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 RWRECLA3 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WRC3 - Change MG reclassification
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: X_SOFORT = Immediately (today)
Selection Text: VERSION = Change identification
Selection Text: DATUM = To become valid from
Title: Change MG Reclassification Version
Text Symbol: 003 = Classes
Text Symbol: 004 = Plants selected!
Text Symbol: 006 = MAT
Text Symbol: 007 = VAR
Text Symbol: 008 = GM
Text Symbol: 010 = Material groups and materials are being selected
Text Symbol: 015 = General information
Text Symbol: 018 = The log is being formatted
Text Symbol: 100 = Limit selection of reclassification objects
Text Symbol: 102 = Display with material
Text Symbol: 103 = Change scheduling
Text Symbol: 104 = Performance parameters
Text Symbol: 107 = Update/activation log
Text Symbol: 200 = You are leaving the application.
Text Symbol: 201 = Do you want to save first?
Text Symbol: 202 = Exit confirmation
Text Symbol: 209 = Simulation
Text Symbol: 213 = Do you want to continue anyway?
Text Symbol: 217 = Activation log
Text Symbol: 220 = For this date there is already a
Text Symbol: 221 = change version
Text Symbol: 002 = Plants
Text Symbol: 001 = Limit selection for reclassification
Text Symbol: 300 = The planned date for
Text Symbol: 301 = reclassification is being
Text Symbol: 302 = changed.
Text Symbol: T10 = Performance query
Text Symbol: T09 = Do you want to continue anyway?
Text Symbol: T08 = have made can take a long time!
Text Symbol: T07 = The result of the selection you
Text Symbol: T06 = Reclassification
Text Symbol: T05 = Class description
Text Symbol: T04 = Class
Text Symbol: T03 = Object
INCLUDE RECLAFOR.
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING P_STATUS = H_PF_STATUS TABLES P_EXCLUDE = H_EXCLUDE EXCEPTIONS OTHERS = 1.
RS_TREE_SET_CURRENT_LAYOUT CALL FUNCTION 'RS_TREE_SET_CURRENT_LAYOUT'.
RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING CALLBACK_PROGRAM = 'RWRECLA3' CALLBACK_USER_COMMAND = 'HANDLE_TREE_COMMANDS' CALLBACK_TEXT_DISPLAY = ' ' CALLBACK_COLOR_DISPLAY = ' ' STATUS = 'IMPLICIT' CHECK_DUPLICATE_NAME = '1' COLOR_OF_LINK = '1' COLOR_OF_NODE = '4' LOWER_CASE_SENSITIVE = ' ' MODIFICATION_LOG = 'X' NODE_LENGTH = 30 TEXT_LENGTH = 75 TEXT_LENGTH1 = 0 TEXT_LENGTH2 = 0 RETURN_MARKED_SUBTREE = 'X' SCREEN_START_COLUMN = 0 SCREEN_START_LINE = 0 SCREEN_END_COLUMN = 0 SCREEN_END_LINE = 0 SUPPRESS_NODE_OUTPUT = ' ' IMPORTING F15 = E_F15.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING DEFAULTOPTION = 'J' DIAGNOSETEXT1 = TEXT-200 * DIAGNOSETEXT2 = ' ' * DIAGNOSETEXT3 = ' ' TEXTLINE1 = TEXT-201 * TEXTLINE2 = ' ' TITEL = TEXT-202 * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = H_ANSWER EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING DEFAULTOPTION = 'N' DIAGNOSETEXT1 = TEXT-300 DIAGNOSETEXT2 = TEXT-301 DIAGNOSETEXT3 = TEXT-302 TEXTLINE1 = TEXT-303 * TEXTLINE2 = ' ' TITEL = TEXT-304 * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = H_ANSWER EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING DEFAULTOPTION = 'N' DIAGNOSETEXT1 = TEXT-220 DIAGNOSETEXT2 = TEXT-221 DIAGNOSETEXT3 = WTREE-WTREE TEXTLINE1 = TEXT-213 * TEXTLINE2 = ' ' TITEL = TEXT-304 * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = H_ANSWER EXCEPTIONS OTHERS = 1.
ENQUEUE_E_WTREE CALL FUNCTION 'ENQUEUE_E_WTREE' EXPORTING MODE_WTREE = 'E' MANDT = SY-MANDT KLART = H_KLART VERSION = H_VERSION * WTREE_ID = * X_KLART = ' ' * X_VERSION = ' ' * X_WTREE_ID = ' ' * _SCOPE = '2' * _WAIT = ' ' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
RS_TREE_SET_CURRENT_TREE CALL FUNCTION 'RS_TREE_SET_CURRENT_TREE' TABLES * NODELIST = PE_T_NODES NODEINFO = PE_T_NODES EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.