SAP FVPR_GET_PARTNER_LIST_1 Function Module for NOTRANSL: Liefert eine Liste mit selektierten Partnernummern
FVPR_GET_PARTNER_LIST_1 is a standard fvpr get partner list 1 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Liefert eine Liste mit selektierten Partnernummern 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 fvpr get partner list 1 FM, simply by entering the name FVPR_GET_PARTNER_LIST_1 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVPR
Program Name: SAPLFVPR
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVPR_GET_PARTNER_LIST_1 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 'FVPR_GET_PARTNER_LIST_1'"NOTRANSL: Liefert eine Liste mit selektierten Partnernummern.
EXPORTING
* I_AUSW_KZ = 'M' "Single-Character Indicator
* I_SELECT = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_ADDRESSDATE = SY-DATUM "System Date
TABLES
* T_PARTNR_OUT = "Business Partner Master (General Data)
* T_SEL_OPT_ROLETYP_IN = "Select options for role category
* T_SEL_OPT_PARTNR = "Select Options for Partner Number
* T_RANGES_OUT = "CBP: Value range for value transfer of change doc. objects
IMPORTING Parameters details for FVPR_GET_PARTNER_LIST_1
I_AUSW_KZ - Single-Character Indicator
Data type: CHAR1Default: 'M'
Optional: Yes
Call by Reference: Yes
I_SELECT - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEOptional: Yes
Call by Reference: Yes
I_ADDRESSDATE - System Date
Data type: SYDATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVPR_GET_PARTNER_LIST_1
T_PARTNR_OUT - Business Partner Master (General Data)
Data type: BP000Optional: Yes
Call by Reference: No ( called with pass by value option)
T_SEL_OPT_ROLETYP_IN - Select options for role category
Data type: VVSOROLETPOptional: Yes
Call by Reference: No ( called with pass by value option)
T_SEL_OPT_PARTNR - Select Options for Partner Number
Data type: VVSOPARTNROptional: Yes
Call by Reference: No ( called with pass by value option)
T_RANGES_OUT - CBP: Value range for value transfer of change doc. objects
Data type: BUS0RANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FVPR_GET_PARTNER_LIST_1 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_ausw_kz | TYPE CHAR1, " 'M' | |||
| lt_t_partnr_out | TYPE STANDARD TABLE OF BP000, " | |||
| lv_i_select | TYPE BOOLE-BOOLE, " | |||
| lt_t_sel_opt_roletyp_in | TYPE STANDARD TABLE OF VVSOROLETP, " | |||
| lv_i_addressdate | TYPE SYDATUM, " SY-DATUM | |||
| lt_t_sel_opt_partnr | TYPE STANDARD TABLE OF VVSOPARTNR, " | |||
| lt_t_ranges_out | TYPE STANDARD TABLE OF BUS0RANGE. " |
|   CALL FUNCTION 'FVPR_GET_PARTNER_LIST_1' "NOTRANSL: Liefert eine Liste mit selektierten Partnernummern |
| EXPORTING | ||
| I_AUSW_KZ | = lv_i_ausw_kz | |
| I_SELECT | = lv_i_select | |
| I_ADDRESSDATE | = lv_i_addressdate | |
| TABLES | ||
| T_PARTNR_OUT | = lt_t_partnr_out | |
| T_SEL_OPT_ROLETYP_IN | = lt_t_sel_opt_roletyp_in | |
| T_SEL_OPT_PARTNR | = lt_t_sel_opt_partnr | |
| T_RANGES_OUT | = lt_t_ranges_out | |
| . " FVPR_GET_PARTNER_LIST_1 | ||
ABAP code using 7.40 inline data declarations to call FM FVPR_GET_PARTNER_LIST_1
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.| DATA(ld_i_ausw_kz) | = 'M'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_select). | ||||
| DATA(ld_i_addressdate) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects