MASS_MAINTAIN SAP Method Changing of Fields and Their Readiness to Accept Input
Below is documentation, parameters and attributes of ABAP Method MASS_MAINTAIN within SAP class IF_EX_BADI_KANBAN_MASS_INIT. 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_KANBAN_MASS_INIT 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 MASS_MAINTAIN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MASS_MAINTAIN
.| Name | Type | Data Type | Description | Default Value |
| IS_CPABPRF | Importing | TYPE CPABPRF | JIT Call Profile | |
| IS_MARD | Importing | TYPE MARD | Storage Location Data For Material | |
| IS_MT61D | Importing | TYPE MT61D | Material Master: MRP | |
| IS_PVBE | Importing | TYPE PVBE | Production Supply Area | |
| IS_TPK00 | Importing | TYPE TPK00 | General Fields in Kanban Replenishment Strategies | |
| IS_TPK01 | Importing | TYPE TPK01 | Control Cycle Control Key In-House Production | |
| IS_TPK02 | Importing | TYPE TPK02 | Key for Controlling Control Cycle: External Replenishment | |
| IS_TPK03 | Importing | TYPE TPK03 | Control Cycle Control Key Stock Transfer | |
| IV_INSERT | Importing | TYPE BOOLEAN | New Control Cycle | |
| IV_LVS_FLAG | Importing | TYPE C | WM Relevance | |
| IS_MARD | Importing | TYPE V_MARD_MD | Storage Location Data For Material | |
| CS_PKHD | Changing | TYPE PKHD | Control Cycle | |
| CT_CELLTAB | Changing | TYPE LVC_T_STYL | ALV Control: Style Table for Cells |
Exceptions of Method MASS_MAINTAIN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_KANBAN_MASS_INIT.
DATA: lv_CS_PKHD TYPE PKHD,
lv_CT_CELLTAB TYPE LVC_T_STYL,
lv_IS_CPABPRF TYPE CPABPRF,
lv_IS_MARD TYPE MARD,
lv_IS_MT61D TYPE MT61D,
lv_IS_PVBE TYPE PVBE,
lv_IS_TPK00 TYPE TPK00,
lv_IS_TPK01 TYPE TPK01,
lv_IS_TPK02 TYPE TPK02,
lv_IS_TPK03 TYPE TPK03,
lv_IV_INSERT TYPE BOOLEAN,
lv_IV_LVS_FLAG TYPE C,
lv_IS_MARD TYPE V_MARD_MD,
lv_other TYPE c.
CALL METHOD lo_class=>MASS_MAINTAIN(
EXPORTING
IS_CPABPRF = lv_IS_CPABPRF
IS_MARD = lv_IS_MARD
IS_MT61D = lv_IS_MT61D
IS_PVBE = lv_IS_PVBE
IS_TPK00 = lv_IS_TPK00
IS_TPK01 = lv_IS_TPK01
IS_TPK02 = lv_IS_TPK02
IS_TPK03 = lv_IS_TPK03
IV_INSERT = lv_IV_INSERT
IV_LVS_FLAG = lv_IV_LVS_FLAG
IS_MARD = lv_IS_MARD
CHANGING
CS_PKHD = lv_CS_PKHD
CT_CELLTAB = lv_CT_CELLTAB ).
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