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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
I_DOCNRImportingTYPE
BUED_DOCNR
Budget Entry Document Number
I_DOCYEARImportingTYPE
BUKU_DOCYEAR
Document Year
I_FLG_HELDImportingTYPE
XFELD
The document is a held document or not
I_FM_AREAImportingTYPE
FIKRS
Financial Management Area
I_USERNAMEImportingTYPE
SYUNAME
User Name
R_LONGTEXT_NAMEReturningTYPE
TDOBNAME
Name



Exceptions of Method BUILD_LONGTEXT_NAME

This method does not have any exceptions

Example 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



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!