SAP Reports / Programs

ME_CL_ERROR_ANALYSIS SAP ABAP Report - Display of Client Log Entries







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT ME_CL_ERROR_ANALYSIS. "Basic submit
SUBMIT ME_CL_ERROR_ANALYSIS AND RETURN. "Return to original report after report execution complete
SUBMIT ME_CL_ERROR_ANALYSIS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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.


INCLUDES used within this REPORT ME_CL_ERROR_ANALYSIS

INCLUDE ME_CCMS_GLOBAL_DATA.
INCLUDE ME_CENTTRAC_GLOB_FORMS.





TABLES used within REPORT and the associated SELECT statement:

No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name ME_CL_ERROR_ANALYSIS or its description.