DISACTION is a standard ABAP INCLUDE 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 DISACTION 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.
Title: Program for object type DISACTION: disconnection activity
Text Symbol: N00 = Disconnect.Doc.
Text Symbol: N01 = Disconn. Activity
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISU_S_DISCDOC_DISPLAY CALL FUNCTION 'ISU_S_DISCDOC_DISPLAY' EXPORTING X_DISCNO = OBJECT-KEY-DOCUMENTNUMBER * X_UPD_ONLINE = X_NO_CHANGE = 'X' X_NO_OTHER = 'X' * IMPORTING * Y_DB_UPDATE = * Y_EXIT_TYPE = * Y_NEW_EDISCDOC = EXCEPTIONS NOT_FOUND = 1 GENERAL_FAULT = 2 NOT_AUTHORIZED = 3 OTHERS = 4.
SREL_GET_NEXT_NEIGHBORS CALL FUNCTION 'SREL_GET_NEXT_NEIGHBORS' EXPORTING OBJECT = I_OBJECT ROLETYPE = CO_ROLETYPE_ISUSPERR RELATIONTYPE = 'EXE1' * MAX_HOPS = 1 TABLES NEIGHBORS = IT_NEIGHBOR.
SREL_GET_NEXT_NEIGHBORS CALL FUNCTION 'SREL_GET_NEXT_NEIGHBORS' EXPORTING OBJECT = I_OBJECT ROLETYPE = CO_ROLETYPE_ISUSPERR RELATIONTYPE = 'EXE1' * MAX_HOPS = 1 TABLES NEIGHBORS = IT_NEIGHBOR.
ISU_DISACTION_GET_FIRST_DATE CALL FUNCTION 'ISU_DISACTION_GET_FIRST_DATE' EXPORTING X_DISCNO = XDISCNO X_DISCACT = XDISCACT IMPORTING Y_DATE = YDATE Y_MULTIPLE_DATES = YMULTIPLEDATES EXCEPTIONS DISCNO_INVALID = 1001 ACTION_INVALID = 1002 SYSTEM_ERROR = 1003 NO_OBJECTS_FOUND = 1004 OTHERS = 01.
EFG_GET_PRINT_PARAMETERS CALL FUNCTION 'EFG_GET_PRINT_PARAMETERS' EXPORTING X_PRINTPARAMS = PRINTPARAMETERS * X_ARCHIVE_BOR_OBJECT = * X_ARCHIVE_ARC_OBJECT = * X_ARCHIVE_OBJECT_ID = * X_NO_DELAYED_PRINT = 'X' X_NO_FORMKEY = ' ' * X_NO_ARCHIVE = * X_CHECK_ARCHIVE = 'X' * X_FORCE_SAPSCRIPT = ' ' * X_NO_PREVIEW = * X_NO_STARTDATE = 'X' * X_ONLY_PRINTER = IMPORTING Y_PRINTPARAMS = PRINTPARAMETERS * Y_ARCHIVE_INDEX = * Y_ARCHIVE_PARAMS = * Y_RECIPIENT = * Y_CORR_PARAMS = EXCEPTIONS CANCELLED = 1 INPUT_ERROR = 2 FAILED = 3 OTHERS = 4 .
EFG_PRINT CALL FUNCTION 'EFG_PRINT' EXPORTING * X_HEADER = X_PRINTPARAMS = PRINTPARAMETERS * X_ARCHIVE_INDEX = * X_ARCHIVE_PARAMS = X_DIALOG = DIALOG * X_RECIPIENT = * X_SENDER = IMPORTING * Y_ITCPP = * Y_RDI_RESULT = Y_PRINTPARAMS = PRINTPARAMETERS TABLES XT_RANGES = IT_RANGES XT_RANGES1 = IT_RANGES1 * XT_RANGES2 = * XT_RANGES3 = * XT_RANGES4 = * XT_RANGES5 = * XT_RANGES6 = * XT_RANGES7 = * XT_RANGES8 = * XT_RANGES9 = * YT_OTF_DATA = EXCEPTIONS NOT_QUALIFIED = 1 FORMCLASS_NOT_FOUND = 2 FORM_NOT_FOUND = 3
FORMCLASS_INVALID = 5 PRINT_FAILED = 6 FORM_INVALID = 7 FUNC_INVALID = 8 CANCELLED = 9 NOT_AUTHORIZED = 10 OTHERS = 11 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.