RKEABCPRESELECT is a standard ABAP INCLUDE 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 RKEABCPRESELECT 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.
INCLUDE LKEDCTO1.
No SAP DATABASE tables are accessed within this REPORT code!
RKE_EXIT CALL FUNCTION 'RKE_EXIT' EXPORTING I_EXIT_ID = 'KEABC_PRESELECT' I_COUNT_PARAMS = 2 CHANGING X_PARAM_1 = IT_SELTAB[] X_PARAM_2 = C_READ_OCCURENCE.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING NAME = TABNAME TABLES DD03P_TAB = T_TABFIELD.
RKD_SELTAB_TO_EXPRESSION CALL FUNCTION 'RKD_SELTAB_TO_EXPRESSION' TABLES SELECTION_TABLE = T_OCC_SELTAB REP_TAB = T_WHERE_CLAUSE.
READ_CUSTOMIZED_MESSAGE CALL FUNCTION 'READ_CUSTOMIZED_MESSAGE' EXPORTING I_ARBGB = 'KW' I_DTYPE = 'W' I_MSGNR = '115' IMPORTING E_MSGTY = MSGTY.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = 'KW' MSGTY = MSGTY TXTNR = '115' EXCEPTION_IF_NOT_ACTIVE = SPACE.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = 'KW' MSGTY = 'I' MSGV1 = HANDLE_DATA-TRCATNR TXTNR = '118' EXCEPTION_IF_NOT_ACTIVE = SPACE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.