GET_EXIT_CLASS SAP Method Determines the exit class for the text type









Below is documentation, parameters and attributes of ABAP Method GET_EXIT_CLASS within SAP class /BOFU/CL_TXC_HELPER. 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 /BOFU/CL_TXC_HELPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method GET_EXIT_CLASS can also be found below:

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


Parameters of Method GET_EXIT_CLASS

.

NameTypeData TypeDescriptionDefault Value
IV_TEXT_SCHEMA_IDImportingTYPE
/BOBF/TXC_TEXT_SCHEMA_ID
Text Schema
IV_TEXT_TYPEImportingTYPE
/BOBF/TXC_TEXT_TYPE
Text Type
EV_EXIT_CLASSExportingTYPE
/BOFU/TXC_EXIT_CLASS
Exit class for text type



Exceptions of Method GET_EXIT_CLASS

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_EXIT_CLASS TYPE /BOFU/TXC_EXIT_CLASS,
lv_IV_TEXT_SCHEMA_ID TYPE /BOBF/TXC_TEXT_SCHEMA_ID,
lv_IV_TEXT_TYPE TYPE /BOBF/TXC_TEXT_TYPE,
lv_other TYPE c.

CALL METHOD /BOFU/CL_TXC_HELPER=>GET_EXIT_CLASS(
EXPORTING
IV_TEXT_SCHEMA_ID = lv_IV_TEXT_SCHEMA_ID
IV_TEXT_TYPE = lv_IV_TEXT_TYPE
IMPORTING
EV_EXIT_CLASS = lv_EV_EXIT_CLASS ).

Links to Related Class(s)

/BOFU/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!