BUILD_LONGTEXT_NAME SAP Method Build long text name
Below is documentation, parameters and attributes of ABAP Method BUILD_LONGTEXT_NAME within SAP class CL_FMBPA_UTILITY. 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 CL_FMBPA_UTILITY 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 BUILD_LONGTEXT_NAME can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BUILD_LONGTEXT_NAME
.| Name | Type | Data Type | Description | Default Value |
| I_DOCNR | Importing | TYPE BUED_DOCNR | Budget Entry Document Number | |
| I_DOCYEAR | Importing | TYPE BUKU_DOCYEAR | Document Year | |
| I_FLG_HELD | Importing | TYPE XFELD | The document is a held document or not | |
| I_FM_AREA | Importing | TYPE FIKRS | Financial Management Area | |
| I_USERNAME | Importing | TYPE SYUNAME | User Name | |
| R_LONGTEXT_NAME | Returning | TYPE TDOBNAME | Name |
Exceptions of Method BUILD_LONGTEXT_NAME
This method does not have any exceptionsExample ABAP coding
DATA: lv_I_DOCNR TYPE BUED_DOCNR,
lv_I_DOCYEAR TYPE BUKU_DOCYEAR,
lv_I_FLG_HELD TYPE XFELD,
lv_I_FM_AREA TYPE FIKRS,
lv_I_USERNAME TYPE SYUNAME,
lv_R_LONGTEXT_NAME TYPE TDOBNAME,
lv_other TYPE c.
CALL METHOD CL_FMBPA_UTILITY=>BUILD_LONGTEXT_NAME(
EXPORTING
I_DOCNR = lv_I_DOCNR
I_DOCYEAR = lv_I_DOCYEAR
I_FLG_HELD = lv_I_FLG_HELD
I_FM_AREA = lv_I_FM_AREA
I_USERNAME = lv_I_USERNAME
RECEIVING
R_LONGTEXT_NAME = lv_R_LONGTEXT_NAME )
"Alternate coding for Method Call with returning parameter
lv_R_LONGTEXT_NAME = CL_FMBPA_UTILITY=>BUILD_LONGTEXT_NAME(
EXPORTING
I_DOCNR = lv_I_DOCNR
I_DOCYEAR = lv_I_DOCYEAR
I_FLG_HELD = lv_I_FLG_HELD
I_FM_AREA = lv_I_FM_AREA
I_USERNAME = lv_I_USERNAME ).
Links to Related Class(s)
CL_FMBPA...Full list of available SAP object classes
Search for further information about these or an SAP related objects