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

.

NameTypeData TypeDescriptionDefault Value
IS_DATAREFImportingTYPE
ANY
IS_DOCUMENT_COMImportingTYPE
CPET_DOCUMENT_COM
CPE: Communication Structure with Document Fields
IS_FORMULA_COMImportingTYPE
CPET_FORMULA_COM
CPE Formula - Grouping and General Result
IV_STRUCTUREImportingTYPE
STRUKNAME
Name of a structure
CT_INPUT_FIELDNAMESChangingTYPE
CPET_INPUT_FIELDNAMES_TAB
CPE - Names of Displayed Fields and Input Fields



Exceptions of Method INPUT_FIELDS_CHANGE

This method does not have any exceptions

Example 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



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!