CONFIG_CHECK_CUSTR SAP Method Performs the customer specific check









Below is documentation, parameters and attributes of ABAP Method CONFIG_CHECK_CUSTR within SAP class IF_EX_BADI_CCM_CUSTR_CHECK. 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_CUSTR_CHECK 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 CONFIG_CHECK_CUSTR can also be found below:

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


Parameters of Method CONFIG_CHECK_CUSTR

.

NameTypeData TypeDescriptionDefault Value
IR_EQUIImportingTYPE REF TO
CL_CCM_EQUIPMENT
CCM: Maintenance Object Equipment
IR_HOLEImportingTYPE REF TO
CL_CCM_HOLE
CCM: Maintenance Object 'Hole'
IR_MPL_NODEImportingTYPE REF TO
CL_CCM_MPL_NODE
ConfigMgmt MPL node
IS_HOLE_DATAImportingTYPE
CCMHLDATA
Data for Screen Field Transport
IS_ITOBImportingTYPE
ITOB
Generated Table for View ITOB
IT_VALID_PARTSImportingTYPE
TAB_MPL_MATERIALS_FOR_NODE
Table of Material details for a given PVS Node
IV_FUNCIDImportingTYPE
CCM_FUNCID
FID (Function Identifier)
IV_MATNRImportingTYPE
MATNR
Material Number
ET_MESSAGEExportingTYPE
BAL_T_MSG
Application Log: Table with Messages
EV_MSGIDExportingTYPE
SYMSGID
Messages, Message Class
EV_MSGNOExportingTYPE
SYMSGNO
Messages, Message Number
EV_MSGTYExportingTYPE
SYMSGTY
Messages, message type
EV_MSGV1ExportingTYPE
SYMSGV
Messages, message variables
EV_MSGV2ExportingTYPE
SYMSGV
Messages, message variables
EV_MSGV3ExportingTYPE
SYMSGV
Messages, message variables
EV_MSGV4ExportingTYPE
SYMSGV
Messages, message variables



Exceptions of Method CONFIG_CHECK_CUSTR

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_CUSTR_CHECK.
DATA: lv_ET_MESSAGE TYPE BAL_T_MSG,
lv_EV_MSGID TYPE SYMSGID,
lv_EV_MSGNO TYPE SYMSGNO,
lv_EV_MSGTY TYPE SYMSGTY,
lv_EV_MSGV1 TYPE SYMSGV,
lv_EV_MSGV2 TYPE SYMSGV,
lv_EV_MSGV3 TYPE SYMSGV,
lv_EV_MSGV4 TYPE SYMSGV,
lv_IR_EQUI TYPE CL_CCM_EQUIPMENT,
lv_IR_HOLE TYPE CL_CCM_HOLE,
lv_IR_MPL_NODE TYPE CL_CCM_MPL_NODE,
lv_IS_HOLE_DATA TYPE CCMHLDATA,
lv_IS_ITOB TYPE ITOB,
lv_IT_VALID_PARTS TYPE TAB_MPL_MATERIALS_FOR_NODE,
lv_IV_FUNCID TYPE CCM_FUNCID,
lv_IV_MATNR TYPE MATNR,
lv_other TYPE c.

CALL METHOD lo_class=>CONFIG_CHECK_CUSTR(
EXPORTING
IR_EQUI = lv_IR_EQUI
IR_HOLE = lv_IR_HOLE
IR_MPL_NODE = lv_IR_MPL_NODE
IS_HOLE_DATA = lv_IS_HOLE_DATA
IS_ITOB = lv_IS_ITOB
IT_VALID_PARTS = lv_IT_VALID_PARTS
IV_FUNCID = lv_IV_FUNCID
IV_MATNR = lv_IV_MATNR
IMPORTING
ET_MESSAGE = lv_ET_MESSAGE
EV_MSGID = lv_EV_MSGID
EV_MSGNO = lv_EV_MSGNO
EV_MSGTY = lv_EV_MSGTY
EV_MSGV1 = lv_EV_MSGV1
EV_MSGV2 = lv_EV_MSGV2
EV_MSGV3 = lv_EV_MSGV3
EV_MSGV4 = lv_EV_MSGV4 ).

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!