SAP ISU_WASTE_ORDERS_EXTRAPOLATE Function Module for Extrapolation of Waste Disposal Orders for a Service Frequency
ISU_WASTE_ORDERS_EXTRAPOLATE is a standard isu waste orders extrapolate SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Extrapolation of Waste Disposal Orders for a Service Frequency processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for isu waste orders extrapolate FM, simply by entering the name ISU_WASTE_ORDERS_EXTRAPOLATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWA_ORDER_INT
Program Name: SAPLEEWA_ORDER_INT
Main Program: SAPLEEWA_ORDER_INT
Appliation area:
Release date: 21-Dec-2001
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_WASTE_ORDERS_EXTRAPOLATE pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ISU_WASTE_ORDERS_EXTRAPOLATE'"Extrapolation of Waste Disposal Orders for a Service Frequency.
EXPORTING
X_OBJNR = "Number of Service Frequency
X_LAUFNR = "Sequence Number of Service Frequency
X_FROM = "Date from Which a Time Slice is Valid
X_TO = "Date On Which a Time Slice Expires
X_EXTRAPOLWASTE = "Type of Waste Disposal Budget Billing Extrapolation
X_OBJ = "
X_SOBJ = "
* X_NO_MESSAGE = "Indicators
TABLES
* YT_ORDERS = "Table of Waste Disposal Services to be Billed
* YT_ORDERS_COMPRESS = "Table of total waste disposal services
EXCEPTIONS
NOT_FOUND = 1 INTERNAL_ERROR = 2 GENERAL_FAULT = 3
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLEEWA_ORDER_INT_001 Calculate Planned Values for Waste Disposal Order
EXIT_SAPLEEWA_ORDER_INT_002 Supplying Header Data of Waste Disposal Order with Customer Data
EXIT_SAPLEEWA_ORDER_INT_003 Supplying Item Data of Waste Disposal Order with Customer Data
EXIT_SAPLEEWA_ORDER_INT_004 Enter all Data for Structure IVB_W for Extrapolation of Waste Disp. Orders
IMPORTING Parameters details for ISU_WASTE_ORDERS_EXTRAPOLATE
X_OBJNR - Number of Service Frequency
Data type: EOBJNROptional: No
Call by Reference: Yes
X_LAUFNR - Sequence Number of Service Frequency
Data type: LAUFNROptional: No
Call by Reference: Yes
X_FROM - Date from Which a Time Slice is Valid
Data type: ABZEITSCHOptional: No
Call by Reference: Yes
X_TO - Date On Which a Time Slice Expires
Data type: BISZEITSCHOptional: No
Call by Reference: Yes
X_EXTRAPOLWASTE - Type of Waste Disposal Budget Billing Extrapolation
Data type: EXTRAPOLWASTEOptional: No
Call by Reference: Yes
X_OBJ -
Data type: ISU2A_BILLING_DATAOptional: No
Call by Reference: Yes
X_SOBJ -
Data type: ISU2A_DATA_COLLECTOROptional: No
Call by Reference: Yes
X_NO_MESSAGE - Indicators
Data type: KENNZXOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_WASTE_ORDERS_EXTRAPOLATE
YT_ORDERS - Table of Waste Disposal Services to be Billed
Data type: ISU2A_IVB_WOptional: Yes
Call by Reference: No ( called with pass by value option)
YT_ORDERS_COMPRESS - Table of total waste disposal services
Data type: ISU2A_IVB_W_COMPRESSOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND - No Orders Found for this Time Period
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_WASTE_ORDERS_EXTRAPOLATE Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_x_objnr | TYPE EOBJNR, " | |||
| lv_not_found | TYPE EOBJNR, " | |||
| lt_yt_orders | TYPE STANDARD TABLE OF ISU2A_IVB_W, " | |||
| lv_x_laufnr | TYPE LAUFNR, " | |||
| lv_internal_error | TYPE LAUFNR, " | |||
| lt_yt_orders_compress | TYPE STANDARD TABLE OF ISU2A_IVB_W_COMPRESS, " | |||
| lv_x_from | TYPE ABZEITSCH, " | |||
| lv_general_fault | TYPE ABZEITSCH, " | |||
| lv_x_to | TYPE BISZEITSCH, " | |||
| lv_x_extrapolwaste | TYPE EXTRAPOLWASTE, " | |||
| lv_x_obj | TYPE ISU2A_BILLING_DATA, " | |||
| lv_x_sobj | TYPE ISU2A_DATA_COLLECTOR, " | |||
| lv_x_no_message | TYPE KENNZX. " |
|   CALL FUNCTION 'ISU_WASTE_ORDERS_EXTRAPOLATE' "Extrapolation of Waste Disposal Orders for a Service Frequency |
| EXPORTING | ||
| X_OBJNR | = lv_x_objnr | |
| X_LAUFNR | = lv_x_laufnr | |
| X_FROM | = lv_x_from | |
| X_TO | = lv_x_to | |
| X_EXTRAPOLWASTE | = lv_x_extrapolwaste | |
| X_OBJ | = lv_x_obj | |
| X_SOBJ | = lv_x_sobj | |
| X_NO_MESSAGE | = lv_x_no_message | |
| TABLES | ||
| YT_ORDERS | = lt_yt_orders | |
| YT_ORDERS_COMPRESS | = lt_yt_orders_compress | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| INTERNAL_ERROR = 2 | ||
| GENERAL_FAULT = 3 | ||
| . " ISU_WASTE_ORDERS_EXTRAPOLATE | ||
ABAP code using 7.40 inline data declarations to call FM ISU_WASTE_ORDERS_EXTRAPOLATE
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects