SAP ISU_AUT_TRANS_WASTE_OBJECTS Function Module for INTERNAL: Transport Connection Various Transactions Gas Area
ISU_AUT_TRANS_WASTE_OBJECTS is a standard isu aut trans waste objects SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERNAL: Transport Connection Various Transactions Gas Area 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 aut trans waste objects FM, simply by entering the name ISU_AUT_TRANS_WASTE_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWA_TRANSPORT
Program Name: SAPLEEWA_TRANSPORT
Main Program: SAPLEEWA_TRANSPORT
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_AUT_TRANS_WASTE_OBJECTS 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_AUT_TRANS_WASTE_OBJECTS'"INTERNAL: Transport Connection Various Transactions Gas Area.
EXPORTING
X_TAB = "Table Name
* X_TEXTTAB = "Name of Corresponding Text Table
X_SOBJ = "Object Name from Transaction SOBJ
* X_KEYTAB_BILL = "Table of Keys from TE669
* X_KEYTAB_ROBTYP = "Structure for Maintenance Object - Cleaning Object Category
* X_KEYTAB_CAL = "Object Data for Waste Disposal Calender
* X_KEYTAB_FAKTOR = "Factors for Billing of Waste Management Services
* X_SPRAS = "Language Key
IMPORTING
Y_OK = "
EXCEPTIONS
GENERAL_FAULT = 1 APPEND_ERROR = 2 TR_CHECK_ERROR = 3
IMPORTING Parameters details for ISU_AUT_TRANS_WASTE_OBJECTS
X_TAB - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
X_TEXTTAB - Name of Corresponding Text Table
Data type: TABNAMEOptional: Yes
Call by Reference: Yes
X_SOBJ - Object Name from Transaction SOBJ
Data type: E071-OBJ_NAMEOptional: No
Call by Reference: Yes
X_KEYTAB_BILL - Table of Keys from TE669
Data type: ISUWA_KEYTAB_AATOptional: Yes
Call by Reference: Yes
X_KEYTAB_ROBTYP - Structure for Maintenance Object - Cleaning Object Category
Data type: ISUWA_IROBTYPOptional: Yes
Call by Reference: Yes
X_KEYTAB_CAL - Object Data for Waste Disposal Calender
Data type: ISUWA_IECALOptional: Yes
Call by Reference: Yes
X_KEYTAB_FAKTOR - Factors for Billing of Waste Management Services
Data type: T_EWA_FAKTOROptional: Yes
Call by Reference: Yes
X_SPRAS - Language Key
Data type: SY-LANGUOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISU_AUT_TRANS_WASTE_OBJECTS
Y_OK -
Data type: REGEN-KENNZXOptional: No
Call by Reference: Yes
EXCEPTIONS details
GENERAL_FAULT - General Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
APPEND_ERROR - Error Processing Order
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TR_CHECK_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_AUT_TRANS_WASTE_OBJECTS 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_y_ok | TYPE REGEN-KENNZX, " | |||
| lv_x_tab | TYPE TABNAME, " | |||
| lv_general_fault | TYPE TABNAME, " | |||
| lv_x_texttab | TYPE TABNAME, " | |||
| lv_append_error | TYPE TABNAME, " | |||
| lv_x_sobj | TYPE E071-OBJ_NAME, " | |||
| lv_tr_check_error | TYPE E071, " | |||
| lv_x_keytab_bill | TYPE ISUWA_KEYTAB_AAT, " | |||
| lv_x_keytab_robtyp | TYPE ISUWA_IROBTYP, " | |||
| lv_x_keytab_cal | TYPE ISUWA_IECAL, " | |||
| lv_x_keytab_faktor | TYPE T_EWA_FAKTOR, " | |||
| lv_x_spras | TYPE SY-LANGU. " |
|   CALL FUNCTION 'ISU_AUT_TRANS_WASTE_OBJECTS' "INTERNAL: Transport Connection Various Transactions Gas Area |
| EXPORTING | ||
| X_TAB | = lv_x_tab | |
| X_TEXTTAB | = lv_x_texttab | |
| X_SOBJ | = lv_x_sobj | |
| X_KEYTAB_BILL | = lv_x_keytab_bill | |
| X_KEYTAB_ROBTYP | = lv_x_keytab_robtyp | |
| X_KEYTAB_CAL | = lv_x_keytab_cal | |
| X_KEYTAB_FAKTOR | = lv_x_keytab_faktor | |
| X_SPRAS | = lv_x_spras | |
| IMPORTING | ||
| Y_OK | = lv_y_ok | |
| EXCEPTIONS | ||
| GENERAL_FAULT = 1 | ||
| APPEND_ERROR = 2 | ||
| TR_CHECK_ERROR = 3 | ||
| . " ISU_AUT_TRANS_WASTE_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM ISU_AUT_TRANS_WASTE_OBJECTS
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.| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_ok). | ||||
| "SELECT single OBJ_NAME FROM E071 INTO @DATA(ld_x_sobj). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_x_spras). | ||||
Search for further information about these or an SAP related objects