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

REATERM3 SAP ABAP Report - Create Schedule Records For All MR Units of a Portion







REATERM3 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create Schedule Records for All Meter Reading Units in a Portion This report generates schedule records for all meter reading units that are allocated to the portion you selected within the specified time interval...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 REATERM3 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

E43B - Generate SRs of all MRUs of Portion


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 REATERM3. "Basic submit
SUBMIT REATERM3 AND RETURN. "Return to original report after report execution complete
SUBMIT REATERM3 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: ABRDATB = MR date to
Selection Text: ABRDATV = MR date from
Selection Text: TERMSCHL = Portion
Selection Text: UPDKENNZ = Overwrite schedule recs
Title: Create Schedule Records For All MR Units of a Portion
Text Symbol: T01 = Creation Param.
Text Symbol: T03 = M
Text Symbol: T04 = P
Text Symbol: S07 = for TE425 (Meter Reading Units: Def. of Dates)
Text Symbol: 001 = No. of master recs read
Text Symbol: 002 = No. of sched. recs generated
Text Symbol: 004 = Sched.rec.
Text Symbol: 005 = End of MR per.
Text Symbol: 006 = Sched. meter reading date
Text Symbol: S01 = Portion
Text Symbol: S02 = Meter reading unit
Text Symbol: S06 = Record with key


INCLUDES used within this REPORT REATERM3

INCLUDE IETERMDT.
INCLUDE IEPHDAT0.
INCLUDE MEA43F99.
INCLUDE IEPSPT00.
INCLUDE IETERMIN.
INCLUDE REATERM3_ALV.


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:

ISU_DB_TE420_SINGLE CALL FUNCTION 'ISU_DB_TE420_SINGLE' EXPORTING x_termschl = termschl x_actual = 'X' IMPORTING y_te420 = wa_te420 EXCEPTIONS not_found = 1 system_error = 2 OTHERS = 3.

ISU_DB_TE421_SELECT_YEARS CALL FUNCTION 'ISU_DB_TE421_SELECT_YEARS' EXPORTING i_abrdatbr = abrdatb i_abrdatvr = abrdatv IMPORTING jahres_wert = h_datum1 EXCEPTIONS general_fault = 1 incorrect_date = 2 OTHERS = 3.

ISU_DB_TE425_SELECT CALL FUNCTION 'ISU_DB_TE425_SELECT' EXPORTING x_ableinh = te422-termschl x_actual = 'X' TABLES yt_te425 = s_te425 EXCEPTIONS not_found = 1 system_error = 2 not_qualified = 3 OTHERS = 4.



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 REATERM3 or its description.