CREATE SAP Method Create New Notif.









Below is documentation, parameters and attributes of ABAP Method CREATE 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 CREATE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CREATE

.

NameTypeData TypeDescriptionDefault Value
IS_CEXT_IOImportingTYPE
IPW4_COM
Communication structure for Equipment install/removal trans.
IV_LOG_HANDLEImportingTYPE
BALLOGHNDL
Application Log: Log Handle
NOTIF_ACTVSImportingTYPE
TT_CCM_NOTIF_ACTVS
Table Type for Notification Activities
NOTIF_HEADERImportingTYPE
RIQS5
Notification Header Data
NOTIF_ITEM_CAUSE_DATAImportingTYPE
TT_CCM_NOTIF_CAUSE
Notification Item Cause Data
NOTIF_ITEM_DATAImportingTYPE
TT_CCM_NOTIF_ITEM
Notification Item Data
NOTIF_LONG_TEXTImportingTYPE
TT_CCM_NOTIF_LONG_TEXT
Long Texts for Notification Objects
NOTIF_TASKSImportingTYPE
TT_CCM_NOTIF_TASKS
Table Type for Notification Tasks
NOTIF_RESULTExportingTYPE
VIQMEL
Creation Result for Notification



Exceptions of Method CREATE

This method does not have any exceptions

Example 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_LONG_TEXT,
lv_NOTIF_RESULT TYPE VIQMEL,
lv_NOTIF_TASKS TYPE TT_CCM_NOTIF_TASKS,
lv_other TYPE c.

CALL METHOD lo_class=>CREATE(
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
IMPORTING
NOTIF_RESULT = lv_NOTIF_RESULT ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!