SAP FTBP_READ_PARTNER_SEL Function Module for Read Partner Data with Selection Options
FTBP_READ_PARTNER_SEL is a standard ftbp read partner sel SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Partner Data with Selection Options 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 partner sel FM, simply by entering the name FTBP_READ_PARTNER_SEL 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_PARTNER_SEL 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_PARTNER_SEL'"Read Partner Data with Selection Options.
EXPORTING
FIELD_RANGES = "
SELECT_FIELDS = "Feldselektion in log. Datenbanken
IMPORTING
BUT000_OUT = "Daten Zentraler Geschäftspartner
BP1030_OUT = "Notification Data
BP1040_OUT = "Company Code for Regulatory Reporting Data
SELECT_PARTNERS = "gefundene Partner nach Suchkriterien
EXCEPTIONS
INVALID_SELECTION_FIELDS = 1
IMPORTING Parameters details for FTBP_READ_PARTNER_SEL
FIELD_RANGES -
Data type: RSDS_TRANGEOptional: No
Call by Reference: Yes
SELECT_FIELDS - Feldselektion in log. Datenbanken
Data type: RSFS_STRUC_TTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FTBP_READ_PARTNER_SEL
BUT000_OUT - Daten Zentraler Geschäftspartner
Data type: BUP_BUT000_TOptional: No
Call by Reference: Yes
BP1030_OUT - Notification Data
Data type: BP1030_TTYOptional: No
Call by Reference: Yes
BP1040_OUT - Company Code for Regulatory Reporting Data
Data type: BP1040_TTYOptional: No
Call by Reference: Yes
SELECT_PARTNERS - gefundene Partner nach Suchkriterien
Data type: BUP_BUT000_TOptional: No
Call by Reference: Yes
EXCEPTIONS details
INVALID_SELECTION_FIELDS - Ungültige Feldangabe für Selektion
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FTBP_READ_PARTNER_SEL 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_but000_out | TYPE BUP_BUT000_T, " | |||
| lv_field_ranges | TYPE RSDS_TRANGE, " | |||
| lv_invalid_selection_fields | TYPE RSDS_TRANGE, " | |||
| lv_bp1030_out | TYPE BP1030_TTY, " | |||
| lv_select_fields | TYPE RSFS_STRUC_TT, " | |||
| lv_bp1040_out | TYPE BP1040_TTY, " | |||
| lv_select_partners | TYPE BUP_BUT000_T. " |
|   CALL FUNCTION 'FTBP_READ_PARTNER_SEL' "Read Partner Data with Selection Options |
| EXPORTING | ||
| FIELD_RANGES | = lv_field_ranges | |
| SELECT_FIELDS | = lv_select_fields | |
| IMPORTING | ||
| BUT000_OUT | = lv_but000_out | |
| BP1030_OUT | = lv_bp1030_out | |
| BP1040_OUT | = lv_bp1040_out | |
| SELECT_PARTNERS | = lv_select_partners | |
| EXCEPTIONS | ||
| INVALID_SELECTION_FIELDS = 1 | ||
| . " FTBP_READ_PARTNER_SEL | ||
ABAP code using 7.40 inline data declarations to call FM FTBP_READ_PARTNER_SEL
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.Search for further information about these or an SAP related objects