CHECK_MAT_UPD_RESB SAP Method Check and Perform Material Update in Reservation
Below is documentation, parameters and attributes of ABAP Method CHECK_MAT_UPD_RESB within SAP class IF_EX_BADI_CCM_FULLY_EQUI. 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_FULLY_EQUI 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 CHECK_MAT_UPD_RESB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_MAT_UPD_RESB
.| Name | Type | Data Type | Description | Default Value |
| IS_IPW4_COM | Importing | TYPE IPW4_COM | Commun. Structure for Equipment Install/Dismantle Trans. | |
| IS_ITOB | Importing | TYPE ITOB | Generated Table for View ITOB | |
| IS_MSEG | Importing | TYPE MSEG | Document Segment: Material | |
| IV_MVMT | Importing | TYPE CHAR1 | Single-character flag | |
| ET_RETURN | Exporting | TYPE BAPIRETTAB | Table with BAPI Return Information | |
| EV_MATNR_OLD | Exporting | TYPE MATNR | Material Number | |
| EV_MAT_UPD_OK | Exporting | TYPE XFLAG | New Input Values | |
| CS_RESB | Changing | TYPE RESB | Reservation/Dependent Requirements |
Exceptions of Method CHECK_MAT_UPD_RESB
ERROR_ON_RESB_UPD - internal error during update on reservationExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_FULLY_EQUI.
DATA: lv_CS_RESB TYPE RESB,
lv_ET_RETURN TYPE BAPIRETTAB,
lv_EV_MATNR_OLD TYPE MATNR,
lv_EV_MAT_UPD_OK TYPE XFLAG,
lv_IS_IPW4_COM TYPE IPW4_COM,
lv_IS_ITOB TYPE ITOB,
lv_IS_MSEG TYPE MSEG,
lv_IV_MVMT TYPE CHAR1,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_MAT_UPD_RESB(
EXPORTING
IS_IPW4_COM = lv_IS_IPW4_COM
IS_ITOB = lv_IS_ITOB
IS_MSEG = lv_IS_MSEG
IV_MVMT = lv_IV_MVMT
IMPORTING
ET_RETURN = lv_ET_RETURN
EV_MATNR_OLD = lv_EV_MATNR_OLD
EV_MAT_UPD_OK = lv_EV_MAT_UPD_OK
CHANGING
CS_RESB = lv_CS_RESB ).
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