REAMIDISCMONITOR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report allows you to search for disconnection and reconnection orders, monitor their status and access all corresponding screens related to these orders (for example, reference object information screen, notification work item information screen)...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 REAMIDISCMONITOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EAMIDISCMON01 - Monitor Disconnection Orders
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: SO_TIMP = Planned activity time
Selection Text: SO_TIMA = Agreed Time
Selection Text: SO_SERNR = D .
Selection Text: SO_PRE = D .
Selection Text: SO_ORD = D .
Selection Text: SO_MATNR = D .
Selection Text: SO_INST = D .
Selection Text: SO_DOCS = D .
Selection Text: SO_DISR = D .
Selection Text: SO_DISD = D .
Selection Text: SO_DATP = Planned activity date
Selection Text: SO_DATA = Agreed Date
Selection Text: SO_CONTR = D .
Selection Text: SO_CO = D .
Selection Text: SO_CA = D .
Selection Text: SO_BP = D .
Selection Text: CHK_BOX2 = Reconnection Orders
Selection Text: CHK_BOX1 = Disconnection Orders
Title: Monitor Disconnection Orders
Text Symbol: S05 = Order Category
Text Symbol: S04 = Disc./Recon. Data
Text Symbol: S03 = Date Selection
Text Symbol: S02 = Reference Objects
Text Symbol: S01 = Regional Selection
Text Symbol: 004 = Notification Work Item ID
Text Symbol: 003 = Agreed Date
Text Symbol: 002 = Notification Work Item
INCLUDE EMSG.
INCLUDE IEAMIDISCCONST.
INCLUDE IE00DATE.
INCLUDE REAMIDISCMONITOR_TYPES.
INCLUDE REAMIDISCMONITOR_SELSCREEN.
No SAP DATABASE tables are accessed within this REPORT code!
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'DE' dokname = 'EDCDOCSTAT' called_by_program = sy-repid called_by_dynp = sy-dynnr called_for_tab = 'EDISCDOC' called_for_field = 'STATUS' TABLES links = it_links.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'EDISCDOC' fieldname = 'STATUS' TABLES return_tab = return_tab.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'EDISCDOC' fieldname = 'STATUS' TABLES return_tab = return_tab.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'DE' dokname = 'EDC_ORDSTAT' called_by_program = sy-repid called_by_dynp = sy-dynnr called_for_tab = 'EDISCD' called_for_field = 'ORDSTATE' TABLES links = it_links.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'EDISCD' fieldname = 'ORDSTATE' TABLES return_tab = return_tab.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'EDISCD' fieldname = 'ORDSTATE' TABLES return_tab = return_tab.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_checked text = text-s01 IMPORTING result = but1 EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.