DETERMINE_TEXT SAP Method Determines the text according to the source









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

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


Parameters of Method DETERMINE_TEXT

.

NameTypeData TypeDescriptionDefault Value
IV_ACCESS_IDImportingTYPE
/BOFU/TXC_ACC_ID
Access Id
IV_BO_KEYImportingTYPE
/BOBF/CONF_KEY
BO Key
IV_KEYImportingTYPE
/BOBF/CONF_KEY
Instance key
IV_NODE_KEYImportingTYPE
/BOBF/CONF_KEY
Node Key
IV_TEXT_TYPEImportingTYPE
/BOBF/TXC_TEXT_TYPE
Text Type
IV_TEXT_SCHEMA_IDImportingTYPE
/BOBF/TXC_TEXT_SCHEMA_ID
Text Schema
ET_TEXTExportingTYPE
/BOFU/T_TEXT_DETAILS
Table of determined text details
EV_TEXT_FOUNDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method DETERMINE_TEXT

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_TEXT TYPE /BOFU/T_TEXT_DETAILS,
lv_EV_TEXT_FOUND TYPE BOOLE_D,
lv_IV_ACCESS_ID TYPE /BOFU/TXC_ACC_ID,
lv_IV_BO_KEY TYPE /BOBF/CONF_KEY,
lv_IV_KEY TYPE /BOBF/CONF_KEY,
lv_IV_NODE_KEY TYPE /BOBF/CONF_KEY,
lv_IV_TEXT_TYPE TYPE /BOBF/TXC_TEXT_TYPE,
lv_IV_TEXT_SCHEMA_ID TYPE /BOBF/TXC_TEXT_SCHEMA_ID,
lv_other TYPE c.

CALL METHOD /BOFU/CL_TXC_HELPER=>DETERMINE_TEXT(
EXPORTING
IV_ACCESS_ID = lv_IV_ACCESS_ID
IV_BO_KEY = lv_IV_BO_KEY
IV_KEY = lv_IV_KEY
IV_NODE_KEY = lv_IV_NODE_KEY
IV_TEXT_TYPE = lv_IV_TEXT_TYPE
IV_TEXT_SCHEMA_ID = lv_IV_TEXT_SCHEMA_ID
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!