CHANGE_GEN_OBJECTS SAP Method Changes/Adds to Non-BDT-Standard Objects for Gen. Request









Below is documentation, parameters and attributes of ABAP Method CHANGE_GEN_OBJECTS within SAP class IF_EX_EEW_BDT_ADD_NEW_FLDS. 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_EEW_BDT_ADD_NEW_FLDS 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 CHANGE_GEN_OBJECTS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CHANGE_GEN_OBJECTS

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
BU_OBJAP
BDT: Application Object
IT_EXTENSIONDEFImportingTYPE
TOXT_PARAMLIST
Input Data from Wizard
IT_KNOWLEDGEImportingTYPE
TOXT_KNOWLEDGE
Basic Customizing
CT_GOX_HEADERChangingTYPE
COMT_GOX_DEF_HEADER
Generation Templates
CT_POSTPROCChangingTYPE
TOXT_RT_TF_PPROC
Postprocessing list
CT_TABLE_ENTRIESChangingTYPE
COMT_GOX_TABLE_ENTRY_HEADER
Table for Generation of Table Entries (Header)
CT_TASKPARAMLISTChangingTYPE
TOXT_PARAMLIST
Transfer Parameters
ET_RETURNChangingTYPE
BUS_BAPIRET2_T
Error List



Exceptions of Method CHANGE_GEN_OBJECTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_EEW_BDT_ADD_NEW_FLDS.
DATA: lv_CT_GOX_HEADER TYPE COMT_GOX_DEF_HEADER,
lv_CT_POSTPROC TYPE TOXT_RT_TF_PPROC,
lv_CT_TABLE_ENTRIES TYPE COMT_GOX_TABLE_ENTRY_HEADER,
lv_CT_TASKPARAMLIST TYPE TOXT_PARAMLIST,
lv_ET_RETURN TYPE BUS_BAPIRET2_T,
lv_FLT_VAL TYPE BU_OBJAP,
lv_IT_EXTENSIONDEF TYPE TOXT_PARAMLIST,
lv_IT_KNOWLEDGE TYPE TOXT_KNOWLEDGE,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_GEN_OBJECTS(
EXPORTING
FLT_VAL = lv_FLT_VAL
IT_EXTENSIONDEF = lv_IT_EXTENSIONDEF
IT_KNOWLEDGE = lv_IT_KNOWLEDGE
CHANGING
CT_GOX_HEADER = lv_CT_GOX_HEADER
CT_POSTPROC = lv_CT_POSTPROC
CT_TABLE_ENTRIES = lv_CT_TABLE_ENTRIES
CT_TASKPARAMLIST = lv_CT_TASKPARAMLIST
ET_RETURN = lv_ET_RETURN ).

Links to Related Class(s)

IF_EX_EE...
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!