MODIFY_SPLITS SAP Method of class IF_EX_BADI_CY_SAPLCY18
Below is documentation, parameters and attributes of ABAP Method MODIFY_SPLITS within SAP class IF_EX_BADI_CY_SAPLCY18. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_CY_SAPLCY18 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 MODIFY_SPLITS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MODIFY_SPLITS
.| Name | Type | Data Type | Description | Default Value |
| IS_AFVGD | Importing | TYPE AFVGD | Order: Dialog Table for Table AFVG (Order Operation) | |
| IS_CAUFVD | Importing | TYPE CAUFVD | Dialog Structure for Order Headers and Items | |
| IS_KBEDD | Importing | TYPE KBEDD | Capacity requirements: dialog table for KBED | |
| IV_ALL | Importing | TYPE SYDATAR | Selection for Entry in a Dynpro Field | |
| IV_NONE | Importing | TYPE SYDATAR | Selection for Entry in a Dynpro Field | |
| IV_PERSONNEL | Importing | TYPE SYDATAR | Selection for Entry in a Dynpro Field | |
| IV_REST | Importing | TYPE SYDATAR | Selection for Entry in a Dynpro Field | |
| EV_ALLOW | Exporting | TYPE SYSUBRC | Return Value of ABAP Statements | |
| IT_KBEDD | Changing | TYPE CYKBEDD | Capacity Requirement: Table Type for KBED | |
| IT_STATUS | Changing | TYPE CYJSTAT | Individual Status Table Type |
Exceptions of Method MODIFY_SPLITS
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_EX_BADI_CY_SAPLCY18.
DATA: lv_EV_ALLOW TYPE SYSUBRC,
lv_IS_AFVGD TYPE AFVGD,
lv_IS_CAUFVD TYPE CAUFVD,
lv_IS_KBEDD TYPE KBEDD,
lv_IT_KBEDD TYPE CYKBEDD,
lv_IT_STATUS TYPE CYJSTAT,
lv_IV_ALL TYPE SYDATAR,
lv_IV_NONE TYPE SYDATAR,
lv_IV_PERSONNEL TYPE SYDATAR,
lv_IV_REST TYPE SYDATAR,
lv_other TYPE c.
CALL METHOD lo_class=>MODIFY_SPLITS(
EXPORTING
IS_AFVGD = lv_IS_AFVGD
IS_CAUFVD = lv_IS_CAUFVD
IS_KBEDD = lv_IS_KBEDD
IV_ALL = lv_IV_ALL
IV_NONE = lv_IV_NONE
IV_PERSONNEL = lv_IV_PERSONNEL
IV_REST = lv_IV_REST
IMPORTING
EV_ALLOW = lv_EV_ALLOW
CHANGING
IT_KBEDD = lv_IT_KBEDD
IT_STATUS = lv_IT_STATUS ).
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