SAP RHPA_SHOW_APPRAISALS_LIST Function Module for Appraisals: List









RHPA_SHOW_APPRAISALS_LIST is a standard rhpa show appraisals list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Appraisals: List 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 rhpa show appraisals list FM, simply by entering the name RHPA_SHOW_APPRAISALS_LIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: RHPA_REPORTING
Program Name: SAPLRHPA_REPORTING
Main Program: SAPLRHPA_REPORTING
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RHPA_SHOW_APPRAISALS_LIST 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 'RHPA_SHOW_APPRAISALS_LIST'"Appraisals: List
EXPORTING
* LIST_PARAMETERS = "List parameters
* PRINT_X = ' ' "
* X1 = "
* Y1 = "

IMPORTING
F15 = "

TABLES
* APPRAISALS = "Appraisals
* OR_APP_ATTRIBUTES = "
* OR_APPRAISORS = "
* OR_APPRAISEES = "
* OR_APPRAISAL = "
* OR_APPRAISALS = "
.



IMPORTING Parameters details for RHPA_SHOW_APPRAISALS_LIST

LIST_PARAMETERS - List parameters

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

PRINT_X -

Data type: CHAR1
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

X1 -

Data type: SY-CUCOL
Optional: Yes
Call by Reference: No ( called with pass by value option)

Y1 -

Data type: SY-CUROW
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for RHPA_SHOW_APPRAISALS_LIST

F15 -

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

TABLES Parameters details for RHPA_SHOW_APPRAISALS_LIST

APPRAISALS - Appraisals

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

OR_APP_ATTRIBUTES -

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

OR_APPRAISORS -

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

OR_APPRAISEES -

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

OR_APPRAISAL -

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

OR_APPRAISALS -

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

Copy and paste ABAP code example for RHPA_SHOW_APPRAISALS_LIST 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_f15  TYPE SY-INPUT, "   
lt_appraisals  TYPE STANDARD TABLE OF HROBJECT, "   
lv_list_parameters  TYPE APPLIST, "   
lv_print_x  TYPE CHAR1, "   ' '
lt_or_app_attributes  TYPE STANDARD TABLE OF DYNP_RHPA, "   
lv_x1  TYPE SY-CUCOL, "   
lt_or_appraisors  TYPE STANDARD TABLE OF HRPE_APPRAISORS, "   
lv_y1  TYPE SY-CUROW, "   
lt_or_appraisees  TYPE STANDARD TABLE OF HRPE_APPRAISEES, "   
lt_or_appraisal  TYPE STANDARD TABLE OF PT1045_EXT, "   
lt_or_appraisals  TYPE STANDARD TABLE OF P1045_EXT. "   

  CALL FUNCTION 'RHPA_SHOW_APPRAISALS_LIST'  "Appraisals: List
    EXPORTING
         LIST_PARAMETERS = lv_list_parameters
         PRINT_X = lv_print_x
         X1 = lv_x1
         Y1 = lv_y1
    IMPORTING
         F15 = lv_f15
    TABLES
         APPRAISALS = lt_appraisals
         OR_APP_ATTRIBUTES = lt_or_app_attributes
         OR_APPRAISORS = lt_or_appraisors
         OR_APPRAISEES = lt_or_appraisees
         OR_APPRAISAL = lt_or_appraisal
         OR_APPRAISALS = lt_or_appraisals
. " RHPA_SHOW_APPRAISALS_LIST




ABAP code using 7.40 inline data declarations to call FM RHPA_SHOW_APPRAISALS_LIST

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 INPUT FROM SY INTO @DATA(ld_f15).
 
 
 
DATA(ld_print_x) = ' '.
 
 
"SELECT single CUCOL FROM SY INTO @DATA(ld_x1).
 
 
"SELECT single CUROW FROM SY INTO @DATA(ld_y1).
 
 
 
 


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!