SAP HR99B00_PP_T799BPP05_READ Function Module for Read Association between receptors and pension subplans









HR99B00_PP_T799BPP05_READ is a standard hr99b00 pp t799bpp05 read 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 Association between receptors and pension subplans 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 hr99b00 pp t799bpp05 read FM, simply by entering the name HR99B00_PP_T799BPP05_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function HR99B00_PP_T799BPP05_READ 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 'HR99B00_PP_T799BPP05_READ'"Read Association between receptors and pension subplans
EXPORTING
P_MOLGA = "Country Grouping
P_IDPLN = "Pension plan id
* P_PPCTR = "Pension plan contributor ID
P_DATE = "End Date

IMPORTING
P_LGART = "Wage Type
P_EMFSL = "Payee key for bank transfers
P_T799BPP05 = "

EXCEPTIONS
NO_ENTRIES_FOUND = 1
.



IMPORTING Parameters details for HR99B00_PP_T799BPP05_READ

P_MOLGA - Country Grouping

Data type: MOLGA
Optional: No
Call by Reference: Yes

P_IDPLN - Pension plan id

Data type: P_99B_PPIDPLN
Optional: No
Call by Reference: Yes

P_PPCTR - Pension plan contributor ID

Data type: P_99B_PPCTR
Optional: Yes
Call by Reference: Yes

P_DATE - End Date

Data type: ENDDA
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for HR99B00_PP_T799BPP05_READ

P_LGART - Wage Type

Data type: LGART
Optional: No
Call by Reference: Yes

P_EMFSL - Payee key for bank transfers

Data type: EMFSL_521B
Optional: No
Call by Reference: Yes

P_T799BPP05 -

Data type: ANY
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_ENTRIES_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR99B00_PP_T799BPP05_READ 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_p_lgart  TYPE LGART, "   
lv_p_molga  TYPE MOLGA, "   
lv_no_entries_found  TYPE MOLGA, "   
lv_p_emfsl  TYPE EMFSL_521B, "   
lv_p_idpln  TYPE P_99B_PPIDPLN, "   
lv_p_ppctr  TYPE P_99B_PPCTR, "   
lv_p_t799bpp05  TYPE ANY, "   
lv_p_date  TYPE ENDDA. "   

  CALL FUNCTION 'HR99B00_PP_T799BPP05_READ'  "Read Association between receptors and pension subplans
    EXPORTING
         P_MOLGA = lv_p_molga
         P_IDPLN = lv_p_idpln
         P_PPCTR = lv_p_ppctr
         P_DATE = lv_p_date
    IMPORTING
         P_LGART = lv_p_lgart
         P_EMFSL = lv_p_emfsl
         P_T799BPP05 = lv_p_t799bpp05
    EXCEPTIONS
        NO_ENTRIES_FOUND = 1
. " HR99B00_PP_T799BPP05_READ




ABAP code using 7.40 inline data declarations to call FM HR99B00_PP_T799BPP05_READ

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



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!