PRINT_NOTIF SAP Method Printout Notification
Below is documentation, parameters and attributes of ABAP Method PRINT_NOTIF within SAP class IF_EX_BADI_CCM_NOTIF_GENER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_CCM_NOTIF_GENER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method PRINT_NOTIF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PRINT_NOTIF
.| Name | Type | Data Type | Description | Default Value |
| IS_CEXT_IO | Importing | TYPE IPW4_COM | Communication structure for Equipment install/removal trans. | |
| IV_LOG_HANDLE | Importing | TYPE BALLOGHNDL | Application Log: Log handle | |
| NOTIF_ACTVS | Importing | TYPE TT_CCM_NOTIF_ACTVS | Table Type for Notification Activities | |
| NOTIF_HEADER | Importing | TYPE RIQS5 | PM/SM/QM Notifications: I/O data for creating notification | |
| NOTIF_ITEM_CAUSE_DATA | Importing | TYPE TT_CCM_NOTIF_CAUSE | Table Type for Notification Item Causes | |
| NOTIF_ITEM_DATA | Importing | TYPE TT_CCM_NOTIF_ITEM | Table Type for Notification Items | |
| NOTIF_LONG_TEXT | Importing | TYPE TT_CCM_NOTIF_ITEM | Table Type for Notification Items | |
| NOTIF_TASKS | Importing | TYPE TT_CCM_NOTIF_TASKS | Table Type for Notification Tasks |
Exceptions of Method PRINT_NOTIF
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_NOTIF_GENER.
DATA: lv_IS_CEXT_IO TYPE IPW4_COM,
lv_IV_LOG_HANDLE TYPE BALLOGHNDL,
lv_NOTIF_ACTVS TYPE TT_CCM_NOTIF_ACTVS,
lv_NOTIF_HEADER TYPE RIQS5,
lv_NOTIF_ITEM_CAUSE_DATA TYPE TT_CCM_NOTIF_CAUSE,
lv_NOTIF_ITEM_DATA TYPE TT_CCM_NOTIF_ITEM,
lv_NOTIF_LONG_TEXT TYPE TT_CCM_NOTIF_ITEM,
lv_NOTIF_TASKS TYPE TT_CCM_NOTIF_TASKS,
lv_other TYPE c.
CALL METHOD lo_class=>PRINT_NOTIF(
EXPORTING
IS_CEXT_IO = lv_IS_CEXT_IO
IV_LOG_HANDLE = lv_IV_LOG_HANDLE
NOTIF_ACTVS = lv_NOTIF_ACTVS
NOTIF_HEADER = lv_NOTIF_HEADER
NOTIF_ITEM_CAUSE_DATA = lv_NOTIF_ITEM_CAUSE_DATA
NOTIF_ITEM_DATA = lv_NOTIF_ITEM_DATA
NOTIF_LONG_TEXT = lv_NOTIF_LONG_TEXT
NOTIF_TASKS = lv_NOTIF_TASKS ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects