SAP EXIT_SAPLANLR_001 Function Module for Control Level Texts for FI-AA Reporting









EXIT_SAPLANLR_001 is a standard exit saplanlr 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Control Level Texts for FI-AA Reporting processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for exit saplanlr 001 FM, simply by entering the name EXIT_SAPLANLR_001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XANL
Program Name: SAPLXANL
Main Program: SAPLXANL
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLANLR_001 pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'EXIT_SAPLANLR_001'"Control Level Texts for FI-AA Reporting
EXPORTING
* I_AFABE = '00' "
* I_BUKRS = '0000' "
I_CONTENT = "
I_FIELDNAME = "
* I_LAENGE = '00' "
* I_OFFSET = '00' "
* I_BERDATUM = "

IMPORTING
E_BEZ = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
AM_DOCUMENT_READ
AM_LOCK_GROUPASSETS
AM_RESET_ANLR
ANEA_READ_MULTIPLE_GJAHR_ALL
ANEKPV_READ_MULTIPLE_AFABE_ALL
ANEKP_READ_MULTIPLE_AFABE_ALL
ANEK_READ_MULITPLE
ANEK_READ_MULTIPLE_AC_DOCUMENT
ANEK_READ_MULTIPLE_FROM_TO_BP
ANEK_READ_MULTIPLE_GJAHR
ANEK_READ_SINGLE
ANEP_GET_NEXT_ABGDT_FOR_AFABE
ANEP_READ_BWAGR_MULTI_AFABE
ANEP_READ_MAX_ABGDT
ANEP_READ_MULTIPLE_AFABE
ANEP_READ_MULTIPLE_AFABE_ALL
ANEP_READ_MULTIPLE_AFABE_BELNR
ANEP_READ_MULTIPLE_AFABE_GE_LN
ANEP_READ_MULTIPLE_GJAHR_ALL
ANEP_READ_SINGLE
ANEP_READ_SINGLE_VIA_ANEA
ANEP_SUM_BWATYP_MULTI_AFABE
ANEXV_READ_MULTIPLE_AFABE_ALL
ANIA_READ_EXIST_CCODE
ANKAZ_READ_SINGLE
ANKA_READ_SINGLE
ANKB_READ_MULTIPLE_AFABE
ANKP_CHANGES_ANKA
ANKP_CHANGES_ANKV
ANKP_READ_AND_CHANGE_ANKA
ANKP_READ_AND_CHANGE_ANKV
ANKP_READ_SINGLE
ANKT_READ_SINGLE
ANKV_READ_MULTIPLE_VSART
ANLA_READ_MULTIPLE_ANLN2
ANLA_READ_MULTIPLE_INTO_ANTS
ANLA_READ_SINGLE
ANLA_READ_TEXT_SINGLE
ANLBZA_READ_MULTIPLE_AFABE
ANLB_READ_MULTIPLE_AFABE
ANLB_READ_SINGLE
ANLC_BUFFER_XCHANGE
ANLC_READ_MULTIPLE_AFABE
ANLC_READ_MULTIPLE_ANLN2_ADD
ANLC_READ_MULTIPLE_GJAHR
ANLC_READ_OR_CREATE_IF_MISSING
ANLC_READ_SINGLE
ANLH_READ_EXIST_CCODE
ANLH_READ_SINGLE
ANLI_READ_MULTIPLE_OBJNR Read ANLI for an object number
ANLI_READ_SINGLE_ANLNR
ANLR_REFRESH_GLOBAL_BUFFER
ANLT_READ_SINGLE
ANLU_READ_SINGLE
ANLV_READ_MULTIPLE_VSART
ANLV_READ_SINGLE
ANLZ_READ_MULTIPLE_BDATU
EPOS_READ_SUM_XZUGNE
GRUPPENSTUFEN_TEXTE_LESEN
READ_ASSET_ITEMS_BY_AWKEY
TEST_FB_LANLRU15_MIT_EXEC_SQL
VANEPK_READ_MULTIPLE_AFABE_ALL

IMPORTING Parameters details for EXIT_SAPLANLR_001

I_AFABE -

Data type: ANLB-AFABE
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BUKRS -

Data type: ANLA-BUKRS
Default: '0000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CONTENT -

Data type: ANLA-TXT50
Optional: No
Call by Reference: No ( called with pass by value option)

I_FIELDNAME -

Data type: ANLA-TXT50
Optional: No
Call by Reference: No ( called with pass by value option)

I_LAENGE -

Data type: T086-LAENGE1
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_OFFSET -

Data type: T086-OFFSET1
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BERDATUM -

Data type: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EXIT_SAPLANLR_001

E_BEZ -

Data type: ANLA-TXT50
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for EXIT_SAPLANLR_001 Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_e_bez  TYPE ANLA-TXT50, "   
lv_i_afabe  TYPE ANLB-AFABE, "   '00'
lv_i_bukrs  TYPE ANLA-BUKRS, "   '0000'
lv_i_content  TYPE ANLA-TXT50, "   
lv_i_fieldname  TYPE ANLA-TXT50, "   
lv_i_laenge  TYPE T086-LAENGE1, "   '00'
lv_i_offset  TYPE T086-OFFSET1, "   '00'
lv_i_berdatum  TYPE SY-DATUM. "   

  CALL FUNCTION 'EXIT_SAPLANLR_001'  "Control Level Texts for FI-AA Reporting
    EXPORTING
         I_AFABE = lv_i_afabe
         I_BUKRS = lv_i_bukrs
         I_CONTENT = lv_i_content
         I_FIELDNAME = lv_i_fieldname
         I_LAENGE = lv_i_laenge
         I_OFFSET = lv_i_offset
         I_BERDATUM = lv_i_berdatum
    IMPORTING
         E_BEZ = lv_e_bez
. " EXIT_SAPLANLR_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLANLR_001

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single TXT50 FROM ANLA INTO @DATA(ld_e_bez).
 
"SELECT single AFABE FROM ANLB INTO @DATA(ld_i_afabe).
DATA(ld_i_afabe) = '00'.
 
"SELECT single BUKRS FROM ANLA INTO @DATA(ld_i_bukrs).
DATA(ld_i_bukrs) = '0000'.
 
"SELECT single TXT50 FROM ANLA INTO @DATA(ld_i_content).
 
"SELECT single TXT50 FROM ANLA INTO @DATA(ld_i_fieldname).
 
"SELECT single LAENGE1 FROM T086 INTO @DATA(ld_i_laenge).
DATA(ld_i_laenge) = '00'.
 
"SELECT single OFFSET1 FROM T086 INTO @DATA(ld_i_offset).
DATA(ld_i_offset) = '00'.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_berdatum).
 


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!