GET_CONT_ASSIST_BY_IMP_CLASS SAP Method Get info for content assistent in Eclipse by implement class









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

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


Parameters of Method GET_CONT_ASSIST_BY_IMP_CLASS

.

NameTypeData TypeDescriptionDefault Value
IV_IMP_CLASS_NAMEImportingTYPE
SEOCLSNAME
Object Type Name
ES_BO_HEADERExportingTYPE
/BOBF/S_CONFRO_OBJ
Configuration: Version-Dependent Root Node
ES_NODEExportingTYPE
/BOBF/S_CONFRO_NODE
Configuration: Node
EV_FAILEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method GET_CONT_ASSIST_BY_IMP_CLASS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_CONF_MODEL_API_ADT.
DATA: lv_ES_BO_HEADER TYPE /BOBF/S_CONFRO_OBJ,
lv_ES_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_EV_FAILED TYPE BOOLE_D,
lv_IV_IMP_CLASS_NAME TYPE SEOCLSNAME,
lv_other TYPE c.

CALL METHOD lo_class=>GET_CONT_ASSIST_BY_IMP_CLASS(
EXPORTING
IV_IMP_CLASS_NAME = lv_IV_IMP_CLASS_NAME
IMPORTING
ES_BO_HEADER = lv_ES_BO_HEADER
ES_NODE = lv_ES_NODE
EV_FAILED = lv_EV_FAILED ).

Links to Related Class(s)

/BOBF/CL...
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!