EVAL_SIDE_CHARGE_BONUS SAP Method Determination of Side Charge Bonus
Below is documentation, parameters and attributes of ABAP Method EVAL_SIDE_CHARGE_BONUS within SAP class IF_EX_BADI_HRAT_CALC_PENS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_HRAT_CALC_PENS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method EVAL_SIDE_CHARGE_BONUS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EVAL_SIDE_CHARGE_BONUS
.| Name | Type | Data Type | Description | Default Value |
| FLT_VAL | Importing | TYPE P03_FLTVA | Parameter FLT_VAL of Method EVAL_SIDE_CHARGE_BONUS | |
| IS_PEN_DATA | Importing | TYPE RPIPENA0L1 | Structure for Application Log, HRPRAT | |
| IT_PRELP | Importing | TYPE PRELP_TAB | Table of Generic Infotypes | |
| IT_T5A8C | Importing | TYPE T5A8C_TAB | Table Type for T5A8C (Calculation Period) | |
| IT_T5A8H | Importing | TYPE T5A8H_TAB | Table Type for T5A8H (PRAT Customizing Constant) | |
| IV_AGEGR | Importing | TYPE P03_AGEGR | Variable Key of Age Grouping | |
| IV_CSGRP | Importing | TYPE P03_CSGRP | Civil Servant Group | |
| IV_PERNR | Importing | TYPE PERSNO | Personnel Number | |
| IV_RETDA | Importing | TYPE P03_RETDA | Retirement Date | |
| IV_RETRE | Importing | TYPE P03_RETRE | Retirement Reason | |
| IV_REVMO | Importing | TYPE P03_REVMO | Revaluation Modifier | |
| IV_RUN | Importing | TYPE C | ||
| CS_CUSTI | Changing | TYPE ANY | Customer Include | |
| CS_NGW | Changing | TYPE RPIPENA0L3 | Structure for Application Log, HRPRAT | |
| CV_SIDCB | Changing | TYPE P03_SIDCB | Side Charge Bonus | |
| CV_SIDOT | Changing | TYPE P03_SIDOT | Factored Side Charge Bonus |
Exceptions of Method EVAL_SIDE_CHARGE_BONUS
CX_HRPRAT_BADI_CALC_PENS - Error During Calculation of Pension (BADI)Example ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_HRAT_CALC_PENS.
DATA: lv_CS_CUSTI TYPE ANY,
lv_CS_NGW TYPE RPIPENA0L3,
lv_CV_SIDCB TYPE P03_SIDCB,
lv_CV_SIDOT TYPE P03_SIDOT,
lv_FLT_VAL TYPE P03_FLTVA,
lv_IS_PEN_DATA TYPE RPIPENA0L1,
lv_IT_PRELP TYPE PRELP_TAB,
lv_IT_T5A8C TYPE T5A8C_TAB,
lv_IT_T5A8H TYPE T5A8H_TAB,
lv_IV_AGEGR TYPE P03_AGEGR,
lv_IV_CSGRP TYPE P03_CSGRP,
lv_IV_PERNR TYPE PERSNO,
lv_IV_RETDA TYPE P03_RETDA,
lv_IV_RETRE TYPE P03_RETRE,
lv_IV_REVMO TYPE P03_REVMO,
lv_IV_RUN TYPE C,
lv_other TYPE c.
CALL METHOD lo_class=>EVAL_SIDE_CHARGE_BONUS(
EXPORTING
FLT_VAL = lv_FLT_VAL
IS_PEN_DATA = lv_IS_PEN_DATA
IT_PRELP = lv_IT_PRELP
IT_T5A8C = lv_IT_T5A8C
IT_T5A8H = lv_IT_T5A8H
IV_AGEGR = lv_IV_AGEGR
IV_CSGRP = lv_IV_CSGRP
IV_PERNR = lv_IV_PERNR
IV_RETDA = lv_IV_RETDA
IV_RETRE = lv_IV_RETRE
IV_REVMO = lv_IV_REVMO
IV_RUN = lv_IV_RUN
CHANGING
CS_CUSTI = lv_CS_CUSTI
CS_NGW = lv_CS_NGW
CV_SIDCB = lv_CV_SIDCB
CV_SIDOT = lv_CV_SIDOT ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects