FILL_CUST_DATA SAP Method Fill/ Change Customer-Specific Data









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

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


Parameters of Method FILL_CUST_DATA

.

NameTypeData TypeDescriptionDefault Value
IS_CEXT_IOImportingTYPE
IPW4_COM
Communication structure for IE4N
NOTIF_ACTVSChangingTYPE
TT_CCM_NOTIF_ACTVS
Table type for notification activities
NOTIF_HEADERChangingTYPE
RIQS5
Table type for notification long text
NOTIF_ITEM_CAUSE_DATAChangingTYPE
TT_CCM_NOTIF_CAUSE
Table type for notification item causes
NOTIF_ITEM_DATAChangingTYPE
TT_CCM_NOTIF_ITEM
Table type for notification items
NOTIF_LONG_TEXTChangingTYPE
TT_CCM_NOTIF_LONG_TEXT
Table type for notification long text
NOTIF_TASKSChangingTYPE
TT_CCM_NOTIF_TASKS
Table type for notification tasks



Exceptions of Method FILL_CUST_DATA

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_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_TASKS TYPE TT_CCM_NOTIF_TASKS,
lv_other TYPE c.

CALL METHOD lo_class=>FILL_CUST_DATA(
EXPORTING
IS_CEXT_IO = lv_IS_CEXT_IO
CHANGING
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



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!