SAP FI_TEXTS_CUSTOMER Function Module for









FI_TEXTS_CUSTOMER is a standard fi texts customer SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fi texts customer FM, simply by entering the name FI_TEXTS_CUSTOMER into the relevant SAP transaction such as SE37 or SE38.

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



Function FI_TEXTS_CUSTOMER 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 'FI_TEXTS_CUSTOMER'"
EXPORTING
* I_AKTYP = ' ' "
I_OBJECT = "
* I_KTOKD = ' ' "Customer Account Group
* I_BUKRS = ' ' "
* I_CHECK = ' ' "
* I_DYNCL = ' ' "
* I_VKORG = ' ' "
* I_VTWEG = ' ' "
* I_SPART = ' ' "
* I_PARNR = ' ' "
I_KUNNR = "

IMPORTING
E_UPDATE = "

EXCEPTIONS
INCORRECT_OBJECT = 1 NO_TEXTS_FOUND = 2
.



IMPORTING Parameters details for FI_TEXTS_CUSTOMER

I_AKTYP -

Data type: T020-AKTYP
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_OBJECT -

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

I_KTOKD - Customer Account Group

Data type: KNA1-KTOKD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BUKRS -

Data type: T001-BUKRS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECK -

Data type: RF02L-XNEUA
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DYNCL -

Data type: T020-DYNCL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VKORG -

Data type: KNVV-VKORG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VTWEG -

Data type: KNVV-VTWEG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SPART -

Data type: KNVV-SPART
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PARNR -

Data type: KNVK-PARNR
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KUNNR -

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

EXPORTING Parameters details for FI_TEXTS_CUSTOMER

E_UPDATE -

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

EXCEPTIONS details

INCORRECT_OBJECT -

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

NO_TEXTS_FOUND -

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

Copy and paste ABAP code example for FI_TEXTS_CUSTOMER 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_i_aktyp  TYPE T020-AKTYP, "   SPACE
lv_e_update  TYPE RTEXT-UPDKZ, "   
lv_incorrect_object  TYPE RTEXT, "   
lv_i_object  TYPE TTXOB-TDOBJECT, "   
lv_i_ktokd  TYPE KNA1-KTOKD, "   SPACE
lv_i_bukrs  TYPE T001-BUKRS, "   SPACE
lv_no_texts_found  TYPE T001, "   
lv_i_check  TYPE RF02L-XNEUA, "   SPACE
lv_i_dyncl  TYPE T020-DYNCL, "   SPACE
lv_i_vkorg  TYPE KNVV-VKORG, "   SPACE
lv_i_vtweg  TYPE KNVV-VTWEG, "   SPACE
lv_i_spart  TYPE KNVV-SPART, "   SPACE
lv_i_parnr  TYPE KNVK-PARNR, "   SPACE
lv_i_kunnr  TYPE KNA1-KUNNR. "   

  CALL FUNCTION 'FI_TEXTS_CUSTOMER'  "
    EXPORTING
         I_AKTYP = lv_i_aktyp
         I_OBJECT = lv_i_object
         I_KTOKD = lv_i_ktokd
         I_BUKRS = lv_i_bukrs
         I_CHECK = lv_i_check
         I_DYNCL = lv_i_dyncl
         I_VKORG = lv_i_vkorg
         I_VTWEG = lv_i_vtweg
         I_SPART = lv_i_spart
         I_PARNR = lv_i_parnr
         I_KUNNR = lv_i_kunnr
    IMPORTING
         E_UPDATE = lv_e_update
    EXCEPTIONS
        INCORRECT_OBJECT = 1
        NO_TEXTS_FOUND = 2
. " FI_TEXTS_CUSTOMER




ABAP code using 7.40 inline data declarations to call FM FI_TEXTS_CUSTOMER

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 AKTYP FROM T020 INTO @DATA(ld_i_aktyp).
DATA(ld_i_aktyp) = ' '.
 
"SELECT single UPDKZ FROM RTEXT INTO @DATA(ld_e_update).
 
 
"SELECT single TDOBJECT FROM TTXOB INTO @DATA(ld_i_object).
 
"SELECT single KTOKD FROM KNA1 INTO @DATA(ld_i_ktokd).
DATA(ld_i_ktokd) = ' '.
 
"SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs).
DATA(ld_i_bukrs) = ' '.
 
 
"SELECT single XNEUA FROM RF02L INTO @DATA(ld_i_check).
DATA(ld_i_check) = ' '.
 
"SELECT single DYNCL FROM T020 INTO @DATA(ld_i_dyncl).
DATA(ld_i_dyncl) = ' '.
 
"SELECT single VKORG FROM KNVV INTO @DATA(ld_i_vkorg).
DATA(ld_i_vkorg) = ' '.
 
"SELECT single VTWEG FROM KNVV INTO @DATA(ld_i_vtweg).
DATA(ld_i_vtweg) = ' '.
 
"SELECT single SPART FROM KNVV INTO @DATA(ld_i_spart).
DATA(ld_i_spart) = ' '.
 
"SELECT single PARNR FROM KNVK INTO @DATA(ld_i_parnr).
DATA(ld_i_parnr) = ' '.
 
"SELECT single KUNNR FROM KNA1 INTO @DATA(ld_i_kunnr).
 


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!