ADMLCF04 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 ADMLCF04 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!
LC_GET_CONFIG_DATA_DBMCLI CALL FUNCTION 'LC_GET_CONFIG_DATA_DBMCLI' EXPORTING con_name = g_log_lc_name use_dbmrfc = g_use_dbmrfc IMPORTING used_datapages = used_datapages used_datadevs = used_datadevs max_datapages = max_datapages max_datadevs = max_datadevs TABLES configuration = int_lc_conf_data action_protocol = int_action_prot EXCEPTIONS no_permission = 1 sxpg_command_execute_error = 2 dbmcli_command_execute_error = 3 lc_get_config_data_error = 4 dbmrfc_execute_error = 6 OTHERS = 7.
GET_PAGESIZE_SDB CALL FUNCTION 'GET_PAGESIZE_SDB' EXPORTING con_name = g_log_lc_name IMPORTING pagesize = p_page_size.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = question IMPORTING answer = answer.
LC_ADD_DEVSPACE CALL FUNCTION 'LC_ADD_DEVSPACE' EXPORTING con_name = g_log_lc_name lc_dev_mode = lc_dev_mode lc_dev_name = new_lc_conf-pfad lc_dev_typ = new_lc_conf-dev_type lc_dev_size = new_lc_conf-groesse use_dbmrfc = g_use_dbmrfc TABLES action_protocol = int_action_prot EXCEPTIONS no_permission = 1 sxpg_command_execute_error = 2 dbmcli_command_execute_error = 3 unknown_con_name = 4 empty_con_env = 5 dbmrfc_execute_error = 6 OTHERS = 7.
LC_GET_CONFIG_LOG_DBMCLI CALL FUNCTION 'LC_GET_CONFIG_LOG_DBMCLI' EXPORTING con_name = g_log_lc_name use_dbmrfc = g_use_dbmrfc IMPORTING log_mode = logmode used_logpages = used_logpages used_logdevs = used_logdevs max_logdevs = max_logdevs TABLES log_config = int_lc_conf_log action_protocol = int_action_prot EXCEPTIONS no_permission = 1 sxpg_command_execute_error = 2 dbmcli_command_execute_error = 3 lc_get_config_log_error = 4 dbmrfc_execute_error = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.