RLECHKINF14 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 RLECHKINF14 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ADDR_PERS_COMP_NAME_SEARCH CALL FUNCTION 'ADDR_PERS_COMP_NAME_SEARCH' EXPORTING SEARCH_STRING = LS_CONVERT_NAME_CONTACT80 WITH_DIALOG = TRUE SINGLE_SELECTION = TRUE SEARCH_IN_ALL_PERSON_GROUPS = TRUE TABLES SEARCH_RESULT = CT_ADRESS_DATA EXCEPTIONS PARAMETER_ERROR = 1 INTERNAL_ERROR = 2 SEARCH_STRING_NOT_ALLOWED = 3 NO_MATCHES_FOUND = 4 OTHERS = 5.
BAPI_USER_GET_DETAIL CALL FUNCTION 'BAPI_USER_GET_DETAIL' EXPORTING USERNAME = LS_USERNAME IMPORTING ADDRESS = CS_ADDRESS TABLES RETURN = LT_RETURN.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.