CACS_CASE_LOGCLASS 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 CACS_CASE_LOGCLASS 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!
MESSAGE_STORE_WITH_DISPLAY CALL FUNCTION 'MESSAGE_STORE_WITH_DISPLAY' EXPORTING arbgb = id_msgid msgty = id_msgty msgv1 = ld_msgv1 msgv2 = ld_msgv2 msgv3 = ld_msgv3 msgv4 = ld_msgv4 txtnr = id_msgno EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 msg_not_stored = 4 msg_store_not_allowed = 5 severe_error = 6 OTHERS = 7.
CACS_LOG_DETLEVEL_CHG CALL FUNCTION 'CACS_LOG_DETLEVEL_CHG' EXPORTING i_changelevel = '+'.
CACS_LOG_DETLEVEL_CHG CALL FUNCTION 'CACS_LOG_DETLEVEL_CHG' EXPORTING i_changelevel = '-'.
CACS_LOG_MESSAGES_GIVE CALL FUNCTION 'CACS_LOG_MESSAGES_GIVE' EXPORTING * I_LOG_HANDLE = iflg_add_text = true iflg_add_msghndl = true i_return_msg_filter = 'XAEWISHF' TABLES et_msg_data = et_message EXCEPTIONS msg_not_found = 1 log_not_found = 2 severe_error = 3 no_logs_specified = 4 log_already_loaded = 5 OTHERS = 6.
CACS_MESSAGE_DEFAULT CALL FUNCTION 'CACS_MESSAGE_DEFAULT' EXPORTING i_context = ld_context.
CACS_LOG_PROPERTIES_GET CALL FUNCTION 'CACS_LOG_PROPERTIES_GET' IMPORTING e_bal_loghndl = ls_log_level-log_handle e_bal_detlevel = ls_log_level-log_level.
CACS_LOG_DETLEVEL_SET CALL FUNCTION 'CACS_LOG_DETLEVEL_SET' EXPORTING i_log_handle = ls_log_level-log_handle i_detleveli = ld_log_level_i.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.