READYDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Delete dynamic schedule records This report deletes schedule records of dynamic scheduling...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 READYDEL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
E3DY - Delete Dynamic Schedule Records
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: FROMDATE = From Date
Selection Text: QUICK_CH = Quick Check for Billed Docs.
Selection Text: IDENT = D .
Selection Text: TS_DYN = D .
Title: Delete Dynamic Schedule Records
Text Symbol: T01 = Portion
Text Symbol: T02 = Meter Reading Unit
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_TE417_SELECT_TERMSCHL call function 'ISU_DB_TE417_SELECT_TERMSCHL' exporting x_termschl = lte420-termschl tables t_te417 = ite417 exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
ISU_DB_TE423_SELECT_TERMTDATAL call function 'ISU_DB_TE423_SELECT_TERMTDATAL' exporting x_termsa = 'P' x_termschl = lte417-termschl x_termtdat = lte417-termtdat tables t_te423 = ite423 exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
ISU_DB_TE418_SELECT_TERMSCHL call function 'ISU_DB_TE418_SELECT_TERMSCHL' exporting x_termschl = lte422-termschl tables t_te418 = ite418 exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
ISU_DB_ETRG_E25M_SELECT call function 'ISU_DB_ETRG_E25M_SELECT' exporting x_abrdats = lte417-abrdats x_portion = lte417-termschl exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
ISU_DB_ERCH_SELECT_RANGE call function 'ISU_DB_ERCH_SELECT_RANGE' exporting * X_ACTUAL = x_maxrows = 1 "if one row is found -> NO deletion allowed * X_VON = x_bis = stornodat * IMPORTING * Y_COUNT = tables * XT_VERTRAG = * XT_BELNR = xt_wheretab = xt_wheretab yt_erch = xt_erch exceptions system_error = 1 not_found = 2 others = 3 .
ISU_DB_ERCH_PORTION_SELECT call function 'ISU_DB_ERCH_PORTION_SELECT' exporting x_portion = lte417-termschl x_abrdats = lte417-abrdats importing y_erch_found = lv_erch_found exceptions internal_error = 1 not_qualified = 2 others = 3.
ISU_DB_EABL_SELECT_UNIT_PRE call function 'ISU_DB_EABL_SELECT_UNIT_PRE' exporting x_ableinh = lte418-termschl x_adatsoll = lte418-adatsoll x_ablesgr = lte418-ablesgr x_actual = 'X' exceptions not_found = 1 system_error = 2 not_qualified = 3 invalid_interval = 4 path_invalid = 5 date_invalid = 6 internal_error = 7 others = 8.
ISU_DB_EABL_SELECT_UNIT_ENT call function 'ISU_DB_EABL_SELECT_UNIT_ENT' exporting x_ableinh = lte418-termschl x_adatsoll = lte418-adatsoll x_ablesgr = lte418-ablesgr exceptions not_found = 1 system_error = 2 not_qualified = 3 invalid_interval = 4 path_invalid = 5 date_invalid = 6 internal_error = 7 others = 8.
ISU_UPDATE_DYNAMIC_SCHEDULE call function 'ISU_UPDATE_DYNAMIC_SCHEDULE' tables tx_te417_old = yte417 tx_te418_old = yte418 tx_te423_old = yte423.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.