INPUT_FIELDS_CHANGE SAP Method of class IF_EX_BADI_CPE_FIELDNAMES
Below is documentation, parameters and attributes of ABAP Method INPUT_FIELDS_CHANGE within SAP class IF_EX_BADI_CPE_FIELDNAMES. 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_CPE_FIELDNAMES 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 INPUT_FIELDS_CHANGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method INPUT_FIELDS_CHANGE
.| Name | Type | Data Type | Description | Default Value |
| IS_DATAREF | Importing | TYPE ANY | ||
| IS_DOCUMENT_COM | Importing | TYPE CPET_DOCUMENT_COM | CPE: Communication Structure with Document Fields | |
| IS_FORMULA_COM | Importing | TYPE CPET_FORMULA_COM | CPE Formula - Grouping and General Result | |
| IV_STRUCTURE | Importing | TYPE STRUKNAME | Name of a structure | |
| CT_INPUT_FIELDNAMES | Changing | TYPE CPET_INPUT_FIELDNAMES_TAB | CPE - Names of Displayed Fields and Input Fields |
Exceptions of Method INPUT_FIELDS_CHANGE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_CPE_FIELDNAMES.
DATA: lv_CT_INPUT_FIELDNAMES TYPE CPET_INPUT_FIELDNAMES_TAB,
lv_IS_DATAREF TYPE ANY,
lv_IS_DOCUMENT_COM TYPE CPET_DOCUMENT_COM,
lv_IS_FORMULA_COM TYPE CPET_FORMULA_COM,
lv_IV_STRUCTURE TYPE STRUKNAME,
lv_other TYPE c.
CALL METHOD lo_class=>INPUT_FIELDS_CHANGE(
EXPORTING
IS_DATAREF = lv_IS_DATAREF
IS_DOCUMENT_COM = lv_IS_DOCUMENT_COM
IS_FORMULA_COM = lv_IS_FORMULA_COM
IV_STRUCTURE = lv_IV_STRUCTURE
CHANGING
CT_INPUT_FIELDNAMES = lv_CT_INPUT_FIELDNAMES ).
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