SAP HR_NL_SV_GET_ACT_DATA_SVP_2 Function Module for Actuele SV dagen en perioden lezen
HR_NL_SV_GET_ACT_DATA_SVP_2 is a standard hr nl sv get act data svp 2 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Actuele SV dagen en perioden lezen 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 hr nl sv get act data svp 2 FM, simply by entering the name HR_NL_SV_GET_ACT_DATA_SVP_2 into the relevant SAP transaction such as SE37 or SE38.
Function Group: RPNL_SV
Program Name: SAPLRPNL_SV
Main Program: SAPLRPNL_SV
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_NL_SV_GET_ACT_DATA_SVP_2 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 'HR_NL_SV_GET_ACT_DATA_SVP_2'"Actuele SV dagen en perioden lezen.
EXPORTING
IMP_SVTAK = "Sociale verzekeringen
IMP_SVVNR = "SV Volgnummer
IMP_SVMET = "Berekeningsmethode SV wetten
* IMP_CNTR1 = "SV-splitsing
IMP_GRSLG = "Grondslag premieberekening
TABLES
TAB_ACT_SV_DATA = "Actuele SV gegevens
TAB_IT = "Afrekeningsresultaat: resultaattabel
IMPORTING Parameters details for HR_NL_SV_GET_ACT_DATA_SVP_2
IMP_SVTAK - Sociale verzekeringen
Data type: SVTAKOptional: No
Call by Reference: Yes
IMP_SVVNR - SV Volgnummer
Data type: P05_SVVNROptional: No
Call by Reference: Yes
IMP_SVMET - Berekeningsmethode SV wetten
Data type: P05_NSVMETOptional: No
Call by Reference: Yes
IMP_CNTR1 - SV-splitsing
Data type: CNTR1Optional: Yes
Call by Reference: Yes
IMP_GRSLG - Grondslag premieberekening
Data type: P05_GRSLGOptional: No
Call by Reference: Yes
TABLES Parameters details for HR_NL_SV_GET_ACT_DATA_SVP_2
TAB_ACT_SV_DATA - Actuele SV gegevens
Data type: P05_ACT_SV_DATAOptional: No
Call by Reference: Yes
TAB_IT - Afrekeningsresultaat: resultaattabel
Data type: PC207Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_NL_SV_GET_ACT_DATA_SVP_2 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_imp_svtak | TYPE SVTAK, " | |||
| lt_tab_act_sv_data | TYPE STANDARD TABLE OF P05_ACT_SV_DATA, " | |||
| lt_tab_it | TYPE STANDARD TABLE OF PC207, " | |||
| lv_imp_svvnr | TYPE P05_SVVNR, " | |||
| lv_imp_svmet | TYPE P05_NSVMET, " | |||
| lv_imp_cntr1 | TYPE CNTR1, " | |||
| lv_imp_grslg | TYPE P05_GRSLG. " |
|   CALL FUNCTION 'HR_NL_SV_GET_ACT_DATA_SVP_2' "Actuele SV dagen en perioden lezen |
| EXPORTING | ||
| IMP_SVTAK | = lv_imp_svtak | |
| IMP_SVVNR | = lv_imp_svvnr | |
| IMP_SVMET | = lv_imp_svmet | |
| IMP_CNTR1 | = lv_imp_cntr1 | |
| IMP_GRSLG | = lv_imp_grslg | |
| TABLES | ||
| TAB_ACT_SV_DATA | = lt_tab_act_sv_data | |
| TAB_IT | = lt_tab_it | |
| . " HR_NL_SV_GET_ACT_DATA_SVP_2 | ||
ABAP code using 7.40 inline data declarations to call FM HR_NL_SV_GET_ACT_DATA_SVP_2
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