SAP FTBP_READ_KNA1 Function Module for Business Partner: Read FI Customer Data (General)
FTBP_READ_KNA1 is a standard ftbp read kna1 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Business Partner: Read FI Customer Data (General) 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 ftbp read kna1 FM, simply by entering the name FTBP_READ_KNA1 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FTBP_READ
Program Name: SAPLFTBP_READ
Main Program: SAPLFTBP_READ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FTBP_READ_KNA1 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 'FTBP_READ_KNA1'"Business Partner: Read FI Customer Data (General).
EXPORTING
* I_CUSTOMER = "
* I_PARTNER = "
* I_XMEMORY = "
* I_XWA = "
* I_DATE = SY-DATUM "
IMPORTING
E_KNA1 = "
EXCEPTIONS
CUSTOMER_NOT_FOUND = 1 NO_CONNECTION = 2
IMPORTING Parameters details for FTBP_READ_KNA1
I_CUSTOMER -
Data type: KNA1-KUNNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_PARTNER -
Data type: BUT000-PARTNEROptional: Yes
Call by Reference: No ( called with pass by value option)
I_XMEMORY -
Data type: BOOLE-BOOLEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_XWA -
Data type: BOOLE-BOOLEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DATE -
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FTBP_READ_KNA1
E_KNA1 -
Data type: KNA1Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CUSTOMER_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_CONNECTION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FTBP_READ_KNA1 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_kna1 | TYPE KNA1, " | |||
| lv_i_customer | TYPE KNA1-KUNNR, " | |||
| lv_customer_not_found | TYPE KNA1, " | |||
| lv_i_partner | TYPE BUT000-PARTNER, " | |||
| lv_no_connection | TYPE BUT000, " | |||
| lv_i_xmemory | TYPE BOOLE-BOOLE, " | |||
| lv_i_xwa | TYPE BOOLE-BOOLE, " | |||
| lv_i_date | TYPE SY-DATUM. " SY-DATUM |
|   CALL FUNCTION 'FTBP_READ_KNA1' "Business Partner: Read FI Customer Data (General) |
| EXPORTING | ||
| I_CUSTOMER | = lv_i_customer | |
| I_PARTNER | = lv_i_partner | |
| I_XMEMORY | = lv_i_xmemory | |
| I_XWA | = lv_i_xwa | |
| I_DATE | = lv_i_date | |
| IMPORTING | ||
| E_KNA1 | = lv_e_kna1 | |
| EXCEPTIONS | ||
| CUSTOMER_NOT_FOUND = 1 | ||
| NO_CONNECTION = 2 | ||
| . " FTBP_READ_KNA1 | ||
ABAP code using 7.40 inline data declarations to call FM FTBP_READ_KNA1
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 KUNNR FROM KNA1 INTO @DATA(ld_i_customer). | ||||
| "SELECT single PARTNER FROM BUT000 INTO @DATA(ld_i_partner). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xmemory). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xwa). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_date). | ||||
| DATA(ld_i_date) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects