GET_TEXT_V2 SAP Method Determines the text for the text type using acc. and acc.seq
Below is documentation, parameters and attributes of ABAP Method GET_TEXT_V2 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 directlyThe following technical details of method GET_TEXT_V2 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TEXT_V2
.| Name | Type | Data Type | Description | Default Value |
| IS_ACC_AND_ACC_SEQ | Importing | TYPE TY_ACC_AND_ACC_SEQ | Structure holding access and access seq id | |
| IT_TT_LIST | Importing | TYPE /BOFU/T_TXCTTS | Text schema with assigned text types, access seq and ref | |
| IV_BO_KEY | Importing | TYPE /BOBF/CONF_KEY | Business Object | |
| IV_KEY | Importing | TYPE /BOBF/CONF_KEY | Instance key | |
| IV_NODE_KEY | Importing | TYPE /BOBF/CONF_KEY | Node | |
| ET_TEXT | Exporting | TYPE /BOFU/T_TEXT_DETAILS | Table of determined text details | |
| EV_TEXT_FOUND | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') |
Exceptions of Method GET_TEXT_V2
/BOBF/CX_FRW - BOPF Exception ClassExample ABAP coding
DATA: lv_ET_TEXT TYPE /BOFU/T_TEXT_DETAILS,
lv_EV_TEXT_FOUND TYPE BOOLE_D,
lv_IS_ACC_AND_ACC_SEQ TYPE TY_ACC_AND_ACC_SEQ,
lv_IT_TT_LIST TYPE /BOFU/T_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_V2(
EXPORTING
IS_ACC_AND_ACC_SEQ = lv_IS_ACC_AND_ACC_SEQ
IT_TT_LIST = lv_IT_TT_LIST
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