GET_TEXT SAP Method Determines the text for the text type









Below is documentation, parameters and attributes of ABAP Method GET_TEXT 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_TEXT can also be found below:

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


Parameters of Method GET_TEXT

.

NameTypeData TypeDescriptionDefault Value
IS_ACCESSImportingTYPE
/BOFU/S_TXC_ACC
Access Id with details
IS_TEXT_INFOImportingTYPE
/BOFU/C_TXCTTS
Info about the selected text type
IV_BO_KEYImportingTYPE
/BOBF/CONF_KEY
Business Object
IV_KEYImportingTYPE
/BOBF/CONF_KEY
Instance key
IV_NODE_KEYImportingTYPE
/BOBF/CONF_KEY
Node
ET_TEXTExportingTYPE
/BOFU/T_TEXT_DETAILS
Text details
EV_TEXT_FOUNDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method GET_TEXT

/BOBF/CX_FRW - BOPF Exception Class

Example ABAP coding


DATA: lv_ET_TEXT TYPE /BOFU/T_TEXT_DETAILS,
lv_EV_TEXT_FOUND TYPE BOOLE_D,
lv_IS_ACCESS TYPE /BOFU/S_TXC_ACC,
lv_IS_TEXT_INFO TYPE /BOFU/C_TXCTTS,
lv_IV_BO_KEY TYPE /BOBF/CONF_KEY,
lv_IV_KEY TYPE /BOBF/CONF_KEY,
lv_IV_NODE_KEY TYPE /BOBF/CONF_KEY,
lv_other TYPE c.

CALL METHOD /BOFU/CL_TXC_HELPER=>GET_TEXT(
EXPORTING
IS_ACCESS = lv_IS_ACCESS
IS_TEXT_INFO = lv_IS_TEXT_INFO
IV_BO_KEY = lv_IV_BO_KEY
IV_KEY = lv_IV_KEY
IV_NODE_KEY = lv_IV_NODE_KEY
IMPORTING
ET_TEXT = lv_ET_TEXT
EV_TEXT_FOUND = lv_EV_TEXT_FOUND ).

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!