RN2BASEITEMDELETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report deletes the base items selected in the selection screen...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 RN2BASEITEMDELETE into the relevant SAP transactions such as SE38 or SE80
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.
Delete Base Items
Selection Text: P_DEEP = Deep Analysis
Selection Text: R_RUN = Delete Data
Selection Text: R_TEST = Test Run
Selection Text: P_EINRI = D .
Selection Text: P_LOEDAT = D .
Selection Text: P_NAME = D .
Title: Delete Base Item
Text Symbol: 000 = Delete Base Item
Text Symbol: 001 = Log Header Is Inconsistent
Text Symbol: 002 = Display Profile Is not Consistent
Text Symbol: 003 = Internal Data Formatting Error
Text Symbol: 004 = No Display Authorization
Text Symbol: 005 = Undefined Error While Displaying Log
Text Symbol: 006 = Selection Processing
Text Symbol: T01 = Where-Used List
INCLUDE SBAL_CONSTANTS.
INCLUDE MNDATA_BOOL.
No SAP DATABASE tables are accessed within this REPORT code!
F4IF_GET_SHLP_DESCR call function 'F4IF_GET_SHLP_DESCR' exporting shlpname = 'H_N2BASEITEM' shlptype = 'SH' importing shlp = gs_shlp_descr.
F4IF_START_VALUE_REQUEST call function 'F4IF_START_VALUE_REQUEST' exporting shlp = gs_shlp_descr disponly = abap_off maxrecords = 500 multisel = ' ' cucol = sy-cucol curow = sy-curow importing rc = g_rc tables return_values = gt_shlp_return.
BAL_LOG_CREATE call function 'BAL_LOG_CREATE' exporting i_s_log = g_s_log exceptions others = 1.
BAL_LOG_MSG_ADD_FREE_TEXT call function 'BAL_LOG_MSG_ADD_FREE_TEXT' exporting i_msgty = 'W' i_probclass = probclass_medium i_text = g_msg_text.
BAL_LOG_MSG_ADD_FREE_TEXT call function 'BAL_LOG_MSG_ADD_FREE_TEXT' exporting i_msgty = 'W' i_probclass = probclass_medium i_text = g_msg_text.
BAL_DB_SAVE_PREPARE call function 'BAL_DB_SAVE_PREPARE' exceptions log_not_found = 1.
BAL_DB_SAVE call function 'BAL_DB_SAVE' exporting i_save_all = 'X' exceptions log_not_found = 1 save_not_allowed = 2 numbering_error = 3.
BAL_DSP_LOG_DISPLAY call function 'BAL_DSP_LOG_DISPLAY' exceptions profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 others = 5.
BAL_LOG_MSG_ADD call function 'BAL_LOG_MSG_ADD' exporting i_s_msg = l_s_msg.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RN2BASEITEMDELETE - Delete Base Item RN2BASEITEMDELETE - Delete Base Item RN2ARCHIVE_DOCLIST - Call the archived document as a document list RN2ARCHIVE_DOCLIST - Call the archived document as a document list RN2ADMTBS_EXT - Change Assignment Levels of Text Modules RN2ADMTBS_EXT - Change Assignment Levels of Text Modules