MRYDELTA_FORMS 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 MRYDELTA_FORMS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING * I_BUFFER_ACTIVE = I_STRUCTURE_NAME = 'MYDELTALAUF_ALV' * I_CLIENT_NEVER_DISPLAY = 'X' * I_BYPASSING_BUFFER = * I_INTERNAL_TABNAME = CHANGING CT_FIELDCAT = P_T_FIELDCAT EXCEPTIONS OTHERS = 99.
DATE_TO_PERIOD_CONVERT CALL FUNCTION 'DATE_TO_PERIOD_CONVERT' EXPORTING I_DATE = l_sniwe-dldat I_PERIV = t001-periv IMPORTING E_BUPER = l_poper E_GJAHR = l_gjahr EXCEPTIONS OTHERS = 99 .
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING nr_range_nr = l_t003l-numkr object = 'ML-BELEG' toyear = l_gjahr IMPORTING number = l_belnr returncode = l_rc EXCEPTIONS interval_not_found = 1 OTHERS = 7.
REUSE_ALV_EXTRACT_SAVE CALL FUNCTION 'REUSE_ALV_EXTRACT_SAVE' EXPORTING IS_EXTRACT = my_extract I_NO_MESSAGE = 'X' TABLES IT_EXP01 = p_lt_deltalauf EXCEPTIONS WRONG_RELID = 1 NO_REPORT = 2 NO_EXNAME = 3 NO_EXTRACT_CREATED = 4 OTHERS = 5.
K_BATCH_REQUEST CALL FUNCTION 'K_BATCH_REQUEST' EXPORTING PAR_DIALG = 'X' PAR_JNAME = 'DELTA_CANCELxxxx ' PAR_RNAME = 'MRY_DELTALAUF_CANCEL' PAR_SDMSG = 'X' PAR_ABEND = 'X' TABLES TAB_SELPA = lt_selpa EXCEPTIONS OTHERS = 99.
REUSE_ALV_EXTRACT_DELETE CALL FUNCTION 'REUSE_ALV_EXTRACT_DELETE' EXPORTING IS_EXTRACT = my_extract EXCEPTIONS NOT_DELETED = 1 OTHERS = 2.
REUSE_ALV_EXTRACT_SAVE CALL FUNCTION 'REUSE_ALV_EXTRACT_SAVE' EXPORTING IS_EXTRACT = my_extract I_NO_MESSAGE = 'X' TABLES IT_EXP01 = p_lt_deltalauf EXCEPTIONS WRONG_RELID = 1 NO_REPORT = 2 NO_EXNAME = 3 NO_EXTRACT_CREATED = 4 OTHERS = 5.
DD_DTEL_GET CALL FUNCTION 'DD_DTEL_GET' EXPORTING LANGU = sy-langu WITHTEXT = 'X' ROLL_NAME = p_dtel TABLES DD04T_TAB_A = it_dd04t.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.