SAP Reports / Programs | Portioning and scheduling | SAP Utilities | Portioning and scheduling(IS-U-BF-PS) SAP IS

READYSC1 SAP ABAP Report - Create/Replace Dynamic Schedule Records







READYSC1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create/replace dynamic schedule records This report enables you to create the schedule records, whose registers are distributed evenly over the workdays of a month...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 READYSC1 into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

E1DY - Create/Rep. Dynamic Schedule Records


ABAP code to call this SAP report using the submit statement

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.






SUBMIT READYSC1. "Basic submit
SUBMIT READYSC1 AND RETURN. "Return to original report after report execution complete
SUBMIT READYSC1 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: ABRVORG = D Billing Transaction
Selection Text: DABLEINH = Meter Reading Unit to be Added
Selection Text: DPORTION = Portion to be Added
Selection Text: IDENT = D Factory Calendar ID
Selection Text: RABLEINH = Reference Meter Reading Unit
Selection Text: RPORTION = Reference Portion
Title: Create/Replace Dynamic Schedule Records
Text Symbol: S01 = Dynamic Period (MM.JJJJ)
Text Symbol: S02 = To
Text Symbol: S03 = From-date
Text Symbol: S04 = Portion
Text Symbol: S05 = Meter reading unit
Text Symbol: S06 = General monitoring data
Text Symbol: S07 = Reference portion
Text Symbol: S08 = Reference meter reading unit


INCLUDES used within this REPORT READYSC1

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

DDUT_DOMVALUE_TEXT_GET CALL FUNCTION 'DDUT_DOMVALUE_TEXT_GET' EXPORTING name = 'ABRVORG' value = f_domvalue_l langu = sy-langu IMPORTING dd07v_wa = w_dd07v EXCEPTIONS OTHERS = 1.

ISU_DB_TE416_SINGLE CALL FUNCTION 'ISU_DB_TE416_SINGLE' EXPORTING x_actual = space IMPORTING y_te416 = w_te416 EXCEPTIONS not_found = 1 OTHERS = 2.

ISU_TIMESLICE_DATE CALL FUNCTION 'ISU_TIMESLICE_DATE' EXPORTING x_ab = abr_from x_bis = abr_to IMPORTING y_ab = abr_from y_bis = abr_to EXCEPTIONS bisdat_lt_abdat = 1 abdate_incorrect = 2 OTHERS = 3.

ISU_DB_TE420_SINGLE CALL FUNCTION 'ISU_DB_TE420_SINGLE' EXPORTING x_termschl = dportion x_actual = space EXCEPTIONS OTHERS = 1.

ISU_DB_TE422_SINGLE CALL FUNCTION 'ISU_DB_TE422_SINGLE' EXPORTING x_termschl = dableinh x_actual = space EXCEPTIONS OTHERS = 1.

ISU_DB_TE420_SINGLE CALL FUNCTION 'ISU_DB_TE420_SINGLE' EXPORTING x_termschl = rportion x_actual = space EXCEPTIONS OTHERS = 1.

ISU_DB_TE422_SINGLE CALL FUNCTION 'ISU_DB_TE422_SINGLE' EXPORTING x_termschl = rableinh x_actual = space EXCEPTIONS OTHERS = 1.

ISU_CREATE_DYNAMIC_SCHEDULE CALL FUNCTION 'ISU_CREATE_DYNAMIC_SCHEDULE' EXPORTING x_date_from = abr_from x_date_to = abr_to x_ident = ident * X_DATE_SHOULD = x_portion = dportion x_rportion = rportion x_ableinh = dableinh x_rableinh = rableinh x_initial = 'X' * X_CHANGE_SUCCESSOR = F_CHANGE_SUCCESSOR x_actual = f_actual TABLES * TX_TE417 = ty_te417_old = t_te417_old ty_te417_new = t_te417_new ty_te418_old = t_te418_old ty_te418_new = t_te418_new ty_te423_old = t_te423_old ty_te423_new = t_te423_new EXCEPTIONS not_found = 1 foreign_lock = 2 input_error = 3 system_error = 4 OTHERS = 5.

ISU_UPDATE_DYNAMIC_SCHEDULE CALL FUNCTION 'ISU_UPDATE_DYNAMIC_SCHEDULE' TABLES tx_te417_old = t_te417_old tx_te417_new = t_te417_new tx_te418_old = t_te418_old tx_te418_new = t_te418_new tx_te423_old = t_te423_old tx_te423_new = t_te423_new.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name READYSC1 or its description.