SAP INVACCPERS_TOP_PRICE_GET_PERS Function Module for
INVACCPERS_TOP_PRICE_GET_PERS is a standard invaccpers top price get pers 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 invaccpers top price get pers FM, simply by entering the name INVACCPERS_TOP_PRICE_GET_PERS into the relevant SAP transaction such as SE37 or SE38.
Function Group: INVACCPERS
Program Name: SAPLINVACCPERS
Main Program: SAPLINVACCPERS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function INVACCPERS_TOP_PRICE_GET_PERS 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 'INVACCPERS_TOP_PRICE_GET_PERS'".
EXPORTING
I_USER = "
TABLES
* R_MATNR = "
* R_MATKL = "
* R_SPART = "
* R_PRCTR = "
* R_MLAST = "
* R_VPRSV = "
* R_STATUS = "
* R_BUKRS = "
* R_WERKS = "
* R_BWTAR = "
* R_VBELN = "
* R_POSNR = "
* R_PSPNR = "
* R_MTART = "
* R_BKLAS = "
IMPORTING Parameters details for INVACCPERS_TOP_PRICE_GET_PERS
I_USER -
Data type: SYST-UNAMEOptional: No
Call by Reference: Yes
TABLES Parameters details for INVACCPERS_TOP_PRICE_GET_PERS
R_MATNR -
Data type:Optional: Yes
Call by Reference: Yes
R_MATKL -
Data type:Optional: Yes
Call by Reference: Yes
R_SPART -
Data type:Optional: Yes
Call by Reference: Yes
R_PRCTR -
Data type:Optional: Yes
Call by Reference: Yes
R_MLAST -
Data type:Optional: Yes
Call by Reference: Yes
R_VPRSV -
Data type:Optional: Yes
Call by Reference: Yes
R_STATUS -
Data type:Optional: Yes
Call by Reference: Yes
R_BUKRS -
Data type:Optional: Yes
Call by Reference: Yes
R_WERKS -
Data type:Optional: Yes
Call by Reference: Yes
R_BWTAR -
Data type:Optional: Yes
Call by Reference: Yes
R_VBELN -
Data type:Optional: Yes
Call by Reference: Yes
R_POSNR -
Data type:Optional: Yes
Call by Reference: Yes
R_PSPNR -
Data type:Optional: Yes
Call by Reference: Yes
R_MTART -
Data type:Optional: Yes
Call by Reference: Yes
R_BKLAS -
Data type:Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for INVACCPERS_TOP_PRICE_GET_PERS 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_user | TYPE SYST-UNAME, " | |||
| lt_r_matnr | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_matkl | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_spart | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_prctr | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_mlast | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_vprsv | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_status | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_bukrs | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_werks | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_bwtar | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_vbeln | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_posnr | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_pspnr | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_mtart | TYPE STANDARD TABLE OF SYST, " | |||
| lt_r_bklas | TYPE STANDARD TABLE OF SYST. " |
|   CALL FUNCTION 'INVACCPERS_TOP_PRICE_GET_PERS' " |
| EXPORTING | ||
| I_USER | = lv_i_user | |
| TABLES | ||
| R_MATNR | = lt_r_matnr | |
| R_MATKL | = lt_r_matkl | |
| R_SPART | = lt_r_spart | |
| R_PRCTR | = lt_r_prctr | |
| R_MLAST | = lt_r_mlast | |
| R_VPRSV | = lt_r_vprsv | |
| R_STATUS | = lt_r_status | |
| R_BUKRS | = lt_r_bukrs | |
| R_WERKS | = lt_r_werks | |
| R_BWTAR | = lt_r_bwtar | |
| R_VBELN | = lt_r_vbeln | |
| R_POSNR | = lt_r_posnr | |
| R_PSPNR | = lt_r_pspnr | |
| R_MTART | = lt_r_mtart | |
| R_BKLAS | = lt_r_bklas | |
| . " INVACCPERS_TOP_PRICE_GET_PERS | ||
ABAP code using 7.40 inline data declarations to call FM INVACCPERS_TOP_PRICE_GET_PERS
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 UNAME FROM SYST INTO @DATA(ld_i_user). | ||||
Search for further information about these or an SAP related objects