ME_CL_ERROR_ANALYSIS is a standard Executable ABAP Report 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 ME_CL_ERROR_ANALYSIS 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.
Selection Text: S_USER = User
Selection Text: S_MSGTYP = Message Type
Selection Text: S_MSGCT = Message Number
Selection Text: S_DEID = Device ID
Selection Text: P_WORK = Processed Messages
Selection Text: P_NOWORK = Unprocessed Messages
Selection Text: P_COPNT2 = To Component
Selection Text: P_COPNT1 = From Component
Selection Text: P_CNT = Messages to be Read
Selection Text: P_ALL = All Messages
Title: Display of Client Log Entries
Text Symbol: 025 = Selection of Client Components
Text Symbol: 024 = Time Conversion
Text Symbol: 023 = Also process dependent W,D,I,S and N messages
Text Symbol: 022 = Process Selection of Messages
Text Symbol: 021 = Completed
Text Symbol: 020 = Fraction of a Second
Text Symbol: 019 = UTC Time
Text Symbol: 018 = UTC Date
Text Symbol: 017 = Error Text
Text Symbol: 016 = Line
Text Symbol: 015 = Pos. Key
Text Symbol: 014 = Time Zone
Text Symbol: 013 = Component
Text Symbol: 012 = Time Stamp
Text Symbol: 011 = Message Number
Text Symbol: 010 = Error Date
Text Symbol: 009 = User Name
Text Symbol: 008 = Message Type
Text Symbol: 007 = Device ID
Text Symbol: 006 = Pos. Key
Text Symbol: 005 = Time
Text Symbol: 004 = to
Text Symbol: 003 = Day
Text Symbol: 002 = UTC Time
Text Symbol: 001 = Select.
INCLUDE ME_CCMS_GLOBAL_DATA.
INCLUDE ME_CENTTRAC_GLOB_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
ME_CALC_UTC_TIME CALL FUNCTION 'ME_CALC_UTC_TIME' EXPORTING I_DIALOG = 'X' I_UTC = 'X' EXCEPTIONS CONVERT_ERROR = 1 OTHERS = 2.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' I_CALLBACK_PROGRAM = 'ME_CL_ERROR_ANALYSIS' I_CALLBACK_PF_STATUS_SET = 'STATUS_GRUNDLISTE' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' IS_LAYOUT = gwa_layout IT_FIELDCAT = gt_fcat IT_EXCLUDING = exclud_tab * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = I_TABNAME_HEADER = 'LT_OUTTAB' I_TABNAME_ITEM = 'LT_ITEM' * I_STRUCTURE_NAME_HEADER = * I_STRUCTURE_NAME_ITEM = IS_KEYINFO = gwa_keyinfo * IS_PRINT = * IS_REPREP_ID = * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB_HEADER = lt_outtab T_OUTTAB_ITEM = lt_item EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = text-022 * DIAGNOSE_OBJECT = ' ' TEXT_QUESTION = text-023 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' * DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING ANSWER = answer * TABLES * PARAMETER = EXCEPTIONS TEXT_NOT_FOUND = 1 OTHERS = 2.
ME_CALC_UTC_TIME CALL FUNCTION 'ME_CALC_UTC_TIME' EXPORTING I_TIMEZ = lwa_outtab-timez I_DAY = lwa_outtab-date I_TIME = lwa_outtab-time I_DIALOG = ' ' I_UTC = 'X' EXCEPTIONS CONVERT_ERROR = 1 OTHERS = 2.
ME_DISPLAY_DYN_HELP_CHAR CALL FUNCTION 'ME_DISPLAY_DYN_HELP_CHAR' EXPORTING TITLE = text-025 STRUCTUR = 'MECLCOMPO' TABNAME = 'LT_COMP' IMPORTING OUTPUT = l_output E_EXIT = l_abbruch TABLES T_TABLE = lt_comp EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.