SLCA_PROFILING_100 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 SLCA_PROFILING_100 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.
Title: i
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING FUNCNAME = lv_fm_profdata_create EXCEPTIONS OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = gv_title text_question = 'Do you want to save the recorded sessions?'(f01) IMPORTING answer = gv_answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = gv_title text_question = 'Do you want to delete the current data?'(a01) IMPORTING answer = gv_answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = gv_title text_question = 'Are you sure you want to delete the current data?'(b01) display_cancel_button = space IMPORTING answer = gv_answer.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 100 text = text-p04.
DD_CREATE_STRUC_WITH_KEY_LC call function 'DD_CREATE_STRUC_WITH_KEY_LC' EXPORTING CON_NAME = gv_lc_name TABNAME = 'LCA_LCPROFDATA' PRID = 0 TABLES KEYFIELDS = lt_keyfields EXCEPTIONS TABLE_EXISTS = 1 TABLE_NOT_CREATED = 2 LC_CONNECT_FAILED = 3 KEY_NO_TABLE_FIELD = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.