SAP ISU_COMEV_SERVICEREQUEST_CREAT Function Module for
ISU_COMEV_SERVICEREQUEST_CREAT is a standard isu comev servicerequest creat SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 comev servicerequest creat FM, simply by entering the name ISU_COMEV_SERVICEREQUEST_CREAT into the relevant SAP transaction such as SE37 or SE38.
Function Group: ECOMEV21
Program Name: SAPLECOMEV21
Main Program: SAPLECOMEV21
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_COMEV_SERVICEREQUEST_CREAT 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_COMEV_SERVICEREQUEST_CREAT'".
EXPORTING
* X_NOTIFHEADER = "
IMPORTING
Y_ERROR = "
Y_RES_IDOC = "
TABLES
* XT_NOTLONGTEXT = "
* XT_NOTITEM = "
* XT_NOTIFCAUS = "
* XT_NOTIFACTV = "
* XT_NOTIFTASK = "
* XT_NOTIFPARTNR = "
EXCEPTIONS
SYSTEM_ERROR = 1 NO_INSTLN_FOR_SERVNOTIF = 2
IMPORTING Parameters details for ISU_COMEV_SERVICEREQUEST_CREAT
X_NOTIFHEADER -
Data type: BAPI2080_NOTHDREOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISU_COMEV_SERVICEREQUEST_CREAT
Y_ERROR -
Data type: ISUD0_ERROROptional: No
Call by Reference: No ( called with pass by value option)
Y_RES_IDOC -
Data type: EDIDCOptional: No
Call by Reference: Yes
TABLES Parameters details for ISU_COMEV_SERVICEREQUEST_CREAT
XT_NOTLONGTEXT -
Data type: BAPI2080_NOTFULLTXTEOptional: Yes
Call by Reference: Yes
XT_NOTITEM -
Data type: BAPI2080_NOTITEMEOptional: Yes
Call by Reference: Yes
XT_NOTIFCAUS -
Data type: BAPI2080_NOTCAUSEOptional: Yes
Call by Reference: Yes
XT_NOTIFACTV -
Data type: BAPI2080_NOTACTVEOptional: Yes
Call by Reference: Yes
XT_NOTIFTASK -
Data type: BAPI2080_NOTTASKEOptional: Yes
Call by Reference: Yes
XT_NOTIFPARTNR -
Data type: BAPI2080_NOTPARTNREOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
SYSTEM_ERROR -
Data type:Optional: No
Call by Reference: Yes
NO_INSTLN_FOR_SERVNOTIF -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_COMEV_SERVICEREQUEST_CREAT 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_error | TYPE ISUD0_ERROR, " | |||
| lv_system_error | TYPE ISUD0_ERROR, " | |||
| lv_x_notifheader | TYPE BAPI2080_NOTHDRE, " | |||
| lt_xt_notlongtext | TYPE STANDARD TABLE OF BAPI2080_NOTFULLTXTE, " | |||
| lt_xt_notitem | TYPE STANDARD TABLE OF BAPI2080_NOTITEME, " | |||
| lv_y_res_idoc | TYPE EDIDC, " | |||
| lv_no_instln_for_servnotif | TYPE EDIDC, " | |||
| lt_xt_notifcaus | TYPE STANDARD TABLE OF BAPI2080_NOTCAUSE, " | |||
| lt_xt_notifactv | TYPE STANDARD TABLE OF BAPI2080_NOTACTVE, " | |||
| lt_xt_notiftask | TYPE STANDARD TABLE OF BAPI2080_NOTTASKE, " | |||
| lt_xt_notifpartnr | TYPE STANDARD TABLE OF BAPI2080_NOTPARTNRE. " |
|   CALL FUNCTION 'ISU_COMEV_SERVICEREQUEST_CREAT' " |
| EXPORTING | ||
| X_NOTIFHEADER | = lv_x_notifheader | |
| IMPORTING | ||
| Y_ERROR | = lv_y_error | |
| Y_RES_IDOC | = lv_y_res_idoc | |
| TABLES | ||
| XT_NOTLONGTEXT | = lt_xt_notlongtext | |
| XT_NOTITEM | = lt_xt_notitem | |
| XT_NOTIFCAUS | = lt_xt_notifcaus | |
| XT_NOTIFACTV | = lt_xt_notifactv | |
| XT_NOTIFTASK | = lt_xt_notiftask | |
| XT_NOTIFPARTNR | = lt_xt_notifpartnr | |
| EXCEPTIONS | ||
| SYSTEM_ERROR = 1 | ||
| NO_INSTLN_FOR_SERVNOTIF = 2 | ||
| . " ISU_COMEV_SERVICEREQUEST_CREAT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_COMEV_SERVICEREQUEST_CREAT
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