UKM_LOGS_DISPLAY is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display of logs in credit management A log for the credit exposure update is only created when there is an error...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter UKM_LOGS_DISPLAY into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
UKM_LOGS_DISPLAY - Display Logs
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.
Selection Text: O_DATS = Date
Selection Text: O_LOGNR = D .
Selection Text: O_TIME = Time
Selection Text: P_CHK = Credit Check
Selection Text: P_COM = Credit Exposure Update
Selection Text: P_REPLI = FI-CA Score Replication
Selection Text: O_GUID = D .
Selection Text: O_PRTN = D .
Selection Text: O_SGM = D .
Selection Text: P_BEL = D .
Selection Text: P_EVENT = D .
Selection Text: P_MONI = D .
Selection Text: P_SEARCH = D .
Title: Log Display
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = sy-repid TABLES selection_table = lt_params.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = ls_rg_lognr-low IMPORTING output = ls_rg_lognr-low.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = ls_rg_lognr-high IMPORTING output = ls_rg_lognr-high.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = ls_log_filter IMPORTING e_t_log_header = lt_log_hdr EXCEPTIONS OTHERS = 1.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = lt_log_hdr IMPORTING e_t_log_handle = lt_log_handle EXCEPTIONS no_logs_specified = 1 log_not_found = 2 log_already_loaded = 3.
BAL_DSP_PROFILE_STANDARD_GET CALL FUNCTION 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = ls_profile.
BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' IMPORTING e_s_display_profile = ls_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_profile i_t_log_handle = lt_log_handle EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.