RN2BASEITEMTYPETEST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Using this report you can check your implementations of the maintenance screen for base item type, integration in the base item manager and customizing...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 RN2BASEITEMTYPETEST 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.
Selection Text: P_DESCR = D .
Selection Text: P_EINRI = D .
Selection Text: P_ITEMID = D .
Selection Text: P_NAME = D .
Selection Text: P_TYPE = D .
Title: Test Base Item Type
Text Symbol: 001 = Base Item
Text Symbol: 002 = Exit program?
Text Symbol: T01 = Exit
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_AUTH_CHECK_REPORT_GROUP CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_GROUP' EXPORTING repid = l_repid repgroup = 'N_2_BIT' no_message = abap_off IMPORTING rc = l_rc.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'STATUS_SEL' p_program = sy-repid TABLES p_exclude = gt_extab.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-t01 text_question = 'Programm beenden?'(002) default_button = '2' display_cancel_button = ' ' IMPORTING answer = p_reply 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.