SAP MASTERIDOCCREATE_ISU_OMS_NOTIF Function Module for Generate IDoc ISU_OMS_NOTIF: Service Notification (Outage)
MASTERIDOCCREATE_ISU_OMS_NOTIF is a standard masteridoccreate isu oms notif SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Generate IDoc ISU_OMS_NOTIF: Service Notification (Outage) 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 masteridoccreate isu oms notif FM, simply by entering the name MASTERIDOCCREATE_ISU_OMS_NOTIF into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWM_IF_OMS_1
Program Name: SAPLEEWM_IF_OMS_1
Main Program: SAPLEEWM_IF_OMS_1
Appliation area: E
Release date: 04-Dec-1998
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MASTERIDOCCREATE_ISU_OMS_NOTIF 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 'MASTERIDOCCREATE_ISU_OMS_NOTIF'"Generate IDoc ISU_OMS_NOTIF: Service Notification (Outage).
EXPORTING
X_QMNUM = "Notification
* X_RCVPRT = ' ' "Partner type of receiver
* X_RCVPRN = ' ' "Partner number of receiver
* X_RCVPFC = ' ' "Partner Function of Receiver
IMPORTING
CREATED_COMM_IDOCS = "Generated communcation IDocs
EXCEPTIONS
SYSTEM_ERROR = 1 NOTIFICATION_NOT_FOUND = 2
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_SAPLEEWM_IF_OMS_1_001 IS-U Work Management: User Exit for IDoc ISU_OMS_ORDER
EXIT_SAPLEEWM_IF_OMS_1_002 IS-U Work Management: User Exit for IDoc ISU_RPL_ORDER
EXIT_SAPLEEWM_IF_OMS_1_003 IS-U Work Management: User Exit for IDoc ISU_COL_ORDER
EXIT_SAPLEEWM_IF_OMS_1_005 IS-U Work Management: User Exit for IDoc ISU_OMS_NOTIF
EXIT_SAPLEEWM_IF_OMS_1_006 IS-U Work Management: User Exit for IDoc ISU_DL_ORDER
EXIT_SAPLEEWM_IF_OMS_1_007 IS-U Work Management: User Exit for IDoc ISU_DL_NOTIF
EXIT_SAPLEEWM_IF_OMS_1_008 IS-U Work Management: User Exit for IDoc ISU_RPL_NOTIF
EXIT_SAPLEEWM_IF_OMS_1_009 IS-U Work Management: User Exit for IDoc ISU_COL_NOTIF
IMPORTING Parameters details for MASTERIDOCCREATE_ISU_OMS_NOTIF
X_QMNUM - Notification
Data type: VIQMEL-QMNUMOptional: No
Call by Reference: No ( called with pass by value option)
X_RCVPRT - Partner type of receiver
Data type: BDALEDC-RCVPRTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_RCVPRN - Partner number of receiver
Data type: BDALEDC-RCVPRNDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_RCVPFC - Partner Function of Receiver
Data type: BDALEDC-RCVPFCDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for MASTERIDOCCREATE_ISU_OMS_NOTIF
CREATED_COMM_IDOCS - Generated communcation IDocs
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SYSTEM_ERROR - Other Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOTIFICATION_NOT_FOUND - Notification not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MASTERIDOCCREATE_ISU_OMS_NOTIF 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_qmnum | TYPE VIQMEL-QMNUM, " | |||
| lv_system_error | TYPE VIQMEL, " | |||
| lv_created_comm_idocs | TYPE SY-TABIX, " | |||
| lv_x_rcvprt | TYPE BDALEDC-RCVPRT, " SPACE | |||
| lv_notification_not_found | TYPE BDALEDC, " | |||
| lv_x_rcvprn | TYPE BDALEDC-RCVPRN, " SPACE | |||
| lv_x_rcvpfc | TYPE BDALEDC-RCVPFC. " SPACE |
|   CALL FUNCTION 'MASTERIDOCCREATE_ISU_OMS_NOTIF' "Generate IDoc ISU_OMS_NOTIF: Service Notification (Outage) |
| EXPORTING | ||
| X_QMNUM | = lv_x_qmnum | |
| X_RCVPRT | = lv_x_rcvprt | |
| X_RCVPRN | = lv_x_rcvprn | |
| X_RCVPFC | = lv_x_rcvpfc | |
| IMPORTING | ||
| CREATED_COMM_IDOCS | = lv_created_comm_idocs | |
| EXCEPTIONS | ||
| SYSTEM_ERROR = 1 | ||
| NOTIFICATION_NOT_FOUND = 2 | ||
| . " MASTERIDOCCREATE_ISU_OMS_NOTIF | ||
ABAP code using 7.40 inline data declarations to call FM MASTERIDOCCREATE_ISU_OMS_NOTIF
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 QMNUM FROM VIQMEL INTO @DATA(ld_x_qmnum). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_created_comm_idocs). | ||||
| "SELECT single RCVPRT FROM BDALEDC INTO @DATA(ld_x_rcvprt). | ||||
| DATA(ld_x_rcvprt) | = ' '. | |||
| "SELECT single RCVPRN FROM BDALEDC INTO @DATA(ld_x_rcvprn). | ||||
| DATA(ld_x_rcvprn) | = ' '. | |||
| "SELECT single RCVPFC FROM BDALEDC INTO @DATA(ld_x_rcvpfc). | ||||
| DATA(ld_x_rcvpfc) | = ' '. | |||
Search for further information about these or an SAP related objects