SAP IWOL_WV_ADD_OBJECTS Function Module for NOTRANSL: Serialnummernliste zum Wartungsvertrag
IWOL_WV_ADD_OBJECTS is a standard iwol wv add 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 NOTRANSL: Serialnummernliste zum Wartungsvertrag 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 iwol wv add objects FM, simply by entering the name IWOL_WV_ADD_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: IWOL
Program Name: SAPLIWOL
Main Program: SAPLIWOL
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IWOL_WV_ADD_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 'IWOL_WV_ADD_OBJECTS'"NOTRANSL: Serialnummernliste zum Wartungsvertrag.
EXPORTING
I_SDAUFNR = "Order Number
I_SDPOSNR = "Item Number
TO_TYPE = "
* I_KUNDE = "
* I_VBTYP = "
* I_SD_AUART = "
* I_POSTYP = "
TABLES
T_RIWOL1 = "Table with Objects
* T_SER02 = "
* T_RIWOL = "
EXCEPTIONS
NO_OBJECT_LIST = 1 EQUI_SYSTEM_FAILURE = 10 CUSTOMER_EXIT_ERROR = 11 ENTRY_EXISTS = 2 INVALID_MATERIAL = 3 INVALID_SERIALNR = 4 INVALID_EQUIPMENT = 5 INVALID_LOCATION = 6 INVALID_ASSEMBLY = 7 STATUS_NOT_ALLOWED = 8 EQUI_FOREIGN_KEY = 9
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_SAPLIWOL_031 User Fields Transferred from Maintenance Plan to Notification
IMPORTING Parameters details for IWOL_WV_ADD_OBJECTS
I_SDAUFNR - Order Number
Data type: SER02-SDAUFNROptional: No
Call by Reference: No ( called with pass by value option)
I_SDPOSNR - Item Number
Data type: SER02-POSNROptional: No
Call by Reference: No ( called with pass by value option)
TO_TYPE -
Data type: CHAR2Optional: No
Call by Reference: No ( called with pass by value option)
I_KUNDE -
Data type: SER02-KUNDEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VBTYP -
Data type: SER02-VBTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SD_AUART -
Data type: SER02-SD_AUARTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_POSTYP -
Data type: SER02-SD_POSTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IWOL_WV_ADD_OBJECTS
T_RIWOL1 - Table with Objects
Data type: RIWOL1Optional: No
Call by Reference: No ( called with pass by value option)
T_SER02 -
Data type: RSERXXOptional: Yes
Call by Reference: No ( called with pass by value option)
T_RIWOL -
Data type: RIWOLOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_OBJECT_LIST -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EQUI_SYSTEM_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CUSTOMER_EXIT_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ENTRY_EXISTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_MATERIAL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_SERIALNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_EQUIPMENT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_LOCATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_ASSEMBLY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
STATUS_NOT_ALLOWED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EQUI_FOREIGN_KEY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for IWOL_WV_ADD_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: | ||||
| lt_t_riwol1 | TYPE STANDARD TABLE OF RIWOL1, " | |||
| lv_i_sdaufnr | TYPE SER02-SDAUFNR, " | |||
| lv_no_object_list | TYPE SER02, " | |||
| lv_equi_system_failure | TYPE SER02, " | |||
| lv_customer_exit_error | TYPE SER02, " | |||
| lt_t_ser02 | TYPE STANDARD TABLE OF RSERXX, " | |||
| lv_i_sdposnr | TYPE SER02-POSNR, " | |||
| lv_entry_exists | TYPE SER02, " | |||
| lv_to_type | TYPE CHAR2, " | |||
| lt_t_riwol | TYPE STANDARD TABLE OF RIWOL, " | |||
| lv_invalid_material | TYPE RIWOL, " | |||
| lv_i_kunde | TYPE SER02-KUNDE, " | |||
| lv_invalid_serialnr | TYPE SER02, " | |||
| lv_i_vbtyp | TYPE SER02-VBTYP, " | |||
| lv_invalid_equipment | TYPE SER02, " | |||
| lv_i_sd_auart | TYPE SER02-SD_AUART, " | |||
| lv_invalid_location | TYPE SER02, " | |||
| lv_i_postyp | TYPE SER02-SD_POSTYP, " | |||
| lv_invalid_assembly | TYPE SER02, " | |||
| lv_status_not_allowed | TYPE SER02, " | |||
| lv_equi_foreign_key | TYPE SER02. " |
|   CALL FUNCTION 'IWOL_WV_ADD_OBJECTS' "NOTRANSL: Serialnummernliste zum Wartungsvertrag |
| EXPORTING | ||
| I_SDAUFNR | = lv_i_sdaufnr | |
| I_SDPOSNR | = lv_i_sdposnr | |
| TO_TYPE | = lv_to_type | |
| I_KUNDE | = lv_i_kunde | |
| I_VBTYP | = lv_i_vbtyp | |
| I_SD_AUART | = lv_i_sd_auart | |
| I_POSTYP | = lv_i_postyp | |
| TABLES | ||
| T_RIWOL1 | = lt_t_riwol1 | |
| T_SER02 | = lt_t_ser02 | |
| T_RIWOL | = lt_t_riwol | |
| EXCEPTIONS | ||
| NO_OBJECT_LIST = 1 | ||
| EQUI_SYSTEM_FAILURE = 10 | ||
| CUSTOMER_EXIT_ERROR = 11 | ||
| ENTRY_EXISTS = 2 | ||
| INVALID_MATERIAL = 3 | ||
| INVALID_SERIALNR = 4 | ||
| INVALID_EQUIPMENT = 5 | ||
| INVALID_LOCATION = 6 | ||
| INVALID_ASSEMBLY = 7 | ||
| STATUS_NOT_ALLOWED = 8 | ||
| EQUI_FOREIGN_KEY = 9 | ||
| . " IWOL_WV_ADD_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM IWOL_WV_ADD_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 SDAUFNR FROM SER02 INTO @DATA(ld_i_sdaufnr). | ||||
| "SELECT single POSNR FROM SER02 INTO @DATA(ld_i_sdposnr). | ||||
| "SELECT single KUNDE FROM SER02 INTO @DATA(ld_i_kunde). | ||||
| "SELECT single VBTYP FROM SER02 INTO @DATA(ld_i_vbtyp). | ||||
| "SELECT single SD_AUART FROM SER02 INTO @DATA(ld_i_sd_auart). | ||||
| "SELECT single SD_POSTYP FROM SER02 INTO @DATA(ld_i_postyp). | ||||
Search for further information about these or an SAP related objects