SAP Reports / Programs

REWAORDER SAP ABAP Report - Create Waste Disposal Orders







REWAORDER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create waste disposal order Using this report, you create waste disposal order that can be outputted at a later data in either file or document form...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 REWAORDER 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

EWAORDALL - Create Waste Disposal Order


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 REWAORDER. "Basic submit
SUBMIT REWAORDER AND RETURN. "Return to original report after report execution complete
SUBMIT REWAORDER 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: WLEVEL = D Winter Maintenance Level
Selection Text: SWERK = D Maintenance Plant
Selection Text: STYPE = D Service Type
Selection Text: STORT = D Location
Selection Text: SLOC = D Container Location
Selection Text: SDVER = D Service Contract
Selection Text: SDKUNDE = D Business Partner
Selection Text: ROUTE = D Route
Selection Text: REGP = D Pol.Reg.Struc.Elem.
Selection Text: POSNR = Item
Selection Text: PERIOD = Order Creation Period
Selection Text: ORDERPOS = D Sequence Number
Selection Text: ORDER = D Waste Disposal Order
Selection Text: LAND = D Country Key
Selection Text: KUNDE = D Business Partner
Selection Text: CODE = D Postal Code
Selection Text: AREA = D Service Area
Title: Create Waste Disposal Orders
Text Symbol: S15 = Customer Fields
Text Symbol: S14 = Contract Data
Text Symbol: S13 = Order Data
Text Symbol: S05 = Schedule Background Job
Text Symbol: S04 = Regional Structure
Text Symbol: S02 = Scheduling


INCLUDES used within this REPORT REWAORDER

INCLUDE: EMSG,
INCLUDE EEWA_ORDER_SELECTION_SCREEN.
INCLUDE EEWA_ORDER_BUILD_RANGES.


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:

RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'SEL' * P_PROGRAM = ' ' TABLES p_exclude = t EXCEPTIONS OTHERS = 1.

ISU_WAORDER_CREATE_BATCH_JOB CALL FUNCTION 'ISU_WAORDER_CREATE_BATCH_JOB' EXPORTING x_jobname = 'WASTE_ORDER_CREATION' x_report_name = 'REWAORDER'.

ISU_WAORDER_CHECK_SELSCREEN CALL FUNCTION 'ISU_WAORDER_CHECK_SELSCREEN' EXPORTING land = land x_wmode = co_create x_active_tab = tabbl-activetab(20) changing xy_selopt = select_options EXCEPTIONS not_found = 1 internal_error = 2 not_authorized = 3 user_canceled = 4 not_customized = 5 foreign_lock = 6 invalid_key = 7 number_error = 8 system_error = 9 input_error = 10 OTHERS = 11.

ISU_WAORDER_SELSCREEN_EXECUTE CALL FUNCTION 'ISU_WAORDER_SELSCREEN_EXECUTE' EXPORTING x_wmode = co_create x_land = land x_active_tab = tabbl-activetab(20) changing xy_selopt = select_options EXCEPTIONS not_found = 1 internal_error = 2 not_authorized = 3 user_canceled = 4 not_customized = 5 foreign_lock = 6 invalid_key = 7 number_error = 8 system_error = 9 input_error = 10 OTHERS = 11.



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