IDX_SHOW_MESSAGE 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 IDX_SHOW_MESSAGE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IDX5 - IDoc Adapter - Monitoring
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_TID = Transaction ID
Selection Text: S_MSGID = Message ID
Selection Text: S_DOCNUM = IDoc Number
Selection Text: P_IDOCTP = IDoc Object
Selection Text: PORT = System ID
Selection Text: DIRECT = Direction
Selection Text: CRETIME = Created At
Selection Text: CREDATE = Created On
Text Symbol: 170 = Display Message
Text Symbol: 160 = Message Deleted
Text Symbol: 150 = Call IDoc Monitor in Remote System
Text Symbol: 145 = Determine Release Information of Remote System
Text Symbol: 140 = IDoc Search in qRFC Outbound Queue
Text Symbol: 130 = IDoc Search in tRFC Outbound Queue
Text Symbol: 120 = Call Function Module 'IDOC_DATE_TIME_GET' with Destination
Text Symbol: 110 = Call Function Module 'IDX_TRACING' with Destination
Text Symbol: 105 = Get System Information for Remote System with Destination
Text Symbol: 050 = Status
Text Symbol: 020 = System is not a central Integration Server; unable to start program
Text Symbol: 010 = IDoc
Text Symbol: 004 = Outbnd
Text Symbol: 003 = Inbound
INCLUDE IDX_SHOWTOP.
INCLUDE IDX_SHOWF01.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = repid i_callback_user_command = 'USER_COMMAND' i_callback_pf_status_set = 'SET_STATUS' is_layout = gs_layout i_save = alv_save is_variant = alv_variant it_fieldcat = lt_fieldcat[] it_sort = lt_sort[] it_events = lt_events[] TABLES t_outtab = int_messages.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_delete info = text-160 "Message deleted IMPORTING result = l_icon_deleted.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_display info = text-170 "Message display IMPORTING result = l_icon_display.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.