CREATE_BOM_HOLE SAP Method Create Structure Gap for Equipment BOM Item









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

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


Parameters of Method CREATE_BOM_HOLE

.

NameTypeData TypeDescriptionDefault Value
IR_APPLICATION_LOGImportingTYPE REF TO
CL_CCM_APPLICATION_LOG
IR_ASM_CONFIGImportingTYPE REF TO
CL_CCM_AS_MAINTND_CONFIG
IR_CFG_MANAGERImportingTYPE REF TO
CL_CCM_CONFIGURATION_MANAGER
IS_BOMITEM_IDImportingTYPE
CCM_BOMITEM_ID
CCM: BOM Item ID Structure
IS_BOM_ITEMImportingTYPE
STPOB
IS_SEQUI_DATAImportingTYPE
ITOB
IV_MATNRImportingTYPE
MATNR
Material Number
IV_QTYUNITImportingTYPE
CCM_QTYUNIT
CCM: Unit of Measure
IV_QUANTITYImportingTYPE
CCM_QUANTITY
CCM: Quantity
CS_IPW4_COMChangingTYPE
IPW4_COM
Commun. Structure for Equipment Install/Dismantle Trans.



Exceptions of Method CREATE_BOM_HOLE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_HOLE_UPD.
DATA: lv_CS_IPW4_COM TYPE IPW4_COM,
lv_IR_APPLICATION_LOG TYPE CL_CCM_APPLICATION_LOG,
lv_IR_ASM_CONFIG TYPE CL_CCM_AS_MAINTND_CONFIG,
lv_IR_CFG_MANAGER TYPE CL_CCM_CONFIGURATION_MANAGER,
lv_IS_BOMITEM_ID TYPE CCM_BOMITEM_ID,
lv_IS_BOM_ITEM TYPE STPOB,
lv_IS_SEQUI_DATA TYPE ITOB,
lv_IV_MATNR TYPE MATNR,
lv_IV_QTYUNIT TYPE CCM_QTYUNIT,
lv_IV_QUANTITY TYPE CCM_QUANTITY,
lv_other TYPE c.

CALL METHOD lo_class=>CREATE_BOM_HOLE(
EXPORTING
IR_APPLICATION_LOG = lv_IR_APPLICATION_LOG
IR_ASM_CONFIG = lv_IR_ASM_CONFIG
IR_CFG_MANAGER = lv_IR_CFG_MANAGER
IS_BOMITEM_ID = lv_IS_BOMITEM_ID
IS_BOM_ITEM = lv_IS_BOM_ITEM
IS_SEQUI_DATA = lv_IS_SEQUI_DATA
IV_MATNR = lv_IV_MATNR
IV_QTYUNIT = lv_IV_QTYUNIT
IV_QUANTITY = lv_IV_QUANTITY
CHANGING
CS_IPW4_COM = lv_CS_IPW4_COM ).

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!