KTTERMCONTROL_MESSAGE_ADDF01 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 KTTERMCONTROL_MESSAGE_ADDF01 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: Include KTTERMCONTROL_MESSAGE_ADDF01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = l_s_msg * I_LOG_HANDLE = EXCEPTIONS log_not_found = 0 OTHERS = 1.
APPL_LOG_SET_OBJECT CALL FUNCTION 'APPL_LOG_SET_OBJECT' EXPORTING object = g_con_term_appllogobj subobject = g_con_term_bdcsubobj EXCEPTIONS object_not_found = 1 subobject_not_found = 2 OTHERS = 3.
APPL_LOG_INIT CALL FUNCTION 'APPL_LOG_INIT' EXPORTING object = g_con_term_appllogobj subobject = g_con_term_bdcsubobj.
APPL_LOG_WRITE_HEADER CALL FUNCTION 'APPL_LOG_WRITE_HEADER' EXPORTING header = l_header.
BKK_PA_PROCESS_LOG_CONV_MESG CALL FUNCTION 'BKK_PA_PROCESS_LOG_CONV_MESG' EXPORTING i_tab_log_mesg = l_tab_log[] IMPORTING e_tab_appl_log_mesg = l_tab_appl_log[].
APPL_LOG_WRITE_MESSAGES CALL FUNCTION 'APPL_LOG_WRITE_MESSAGES' EXPORTING object = g_con_term_appllogobj subobject = g_con_term_bdcsubobj update_or_insert = 'I' TABLES messages = l_tab_appl_log[].
APPL_LOG_WRITE_DB CALL FUNCTION 'APPL_LOG_WRITE_DB' EXPORTING object = g_con_term_appllogobj subobject = g_con_term_bdcsubobj TABLES object_with_lognumber = l_tab_dummy.
MESSAGES_GIVE CALL FUNCTION 'MESSAGES_GIVE' TABLES t_mesg = itab.
DD_DOMVALUE_TEXT_GET CALL FUNCTION 'DD_DOMVALUE_TEXT_GET' EXPORTING domname = 'BKK_ITSTAT' value = l_dd07v_wa-domvalue_l langu = sy-langu IMPORTING dd07v_wa = l_dd07v_wa rc = l_rc.
BKK_DELETE_LEADING_ZERO CALL FUNCTION 'BKK_DELETE_LEADING_ZERO' CHANGING c_field = paorno_purif.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = c_log_handle EXCEPTIONS OTHERS = 1.
BAL_DB_SAVE CALL FUNCTION 'BAL_DB_SAVE' EXPORTING i_t_log_handle = l_t_log_handle IMPORTING e_new_lognumbers = l_t_new_lognumbers EXCEPTIONS OTHERS = 1.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = p_l_log_handle i_s_msg = g_struc_messages EXCEPTIONS OTHERS = 1.
BAL_DB_SAVE CALL FUNCTION 'BAL_DB_SAVE' EXPORTING i_t_log_handle = l_t_log_handle EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.