INDIFREI_BETR_P35 SAP Method Mth. Individual Exempt. Acc. Sec. 35 for Reduct. Earn. Cap.









Below is documentation, parameters and attributes of ABAP Method INDIFREI_BETR_P35 within SAP class IF_HRPAYAT_STAT_UTILBIB. 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_HRPAYAT_STAT_UTILBIB 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 INDIFREI_BETR_P35 can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method INDIFREI_BETR_P35

.

NameTypeData TypeDescriptionDefault Value
IM_DATEImportingTYPE
BEGDA
Field of Type DATS
IM_FBP35ImportingTYPE
FBP35
Indivd. Exemption Amount According to Sec. 35 Income Tax Law
IM_KF_NENNERImportingTYPE
PC03_DEC11_4
Reduction Factor Numerator
IM_KF_ZAEHLERImportingTYPE
PC03_DEC11_4
Reduction Factor Denominator
IM_STAFFImportingTYPE
STP35
Exmptn Due to Reduction in Earn.Cap: Prog.Rates Sec.35 EStG
CH_PERID_BETRGChangingTYPE
MAXBT
Unreduced Amount
CH_SPLIT_BETRGChangingTYPE
MAXBT
Reduced Amount



Exceptions of Method INDIFREI_BETR_P35

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_HRPAYAT_STAT_UTILBIB.
DATA: lv_CH_PERID_BETRG TYPE MAXBT,
lv_CH_SPLIT_BETRG TYPE MAXBT,
lv_IM_DATE TYPE BEGDA,
lv_IM_FBP35 TYPE FBP35,
lv_IM_KF_NENNER TYPE PC03_DEC11_4,
lv_IM_KF_ZAEHLER TYPE PC03_DEC11_4,
lv_IM_STAFF TYPE STP35,
lv_other TYPE c.

CALL METHOD lo_class=>INDIFREI_BETR_P35(
EXPORTING
IM_DATE = lv_IM_DATE
IM_FBP35 = lv_IM_FBP35
IM_KF_NENNER = lv_IM_KF_NENNER
IM_KF_ZAEHLER = lv_IM_KF_ZAEHLER
IM_STAFF = lv_IM_STAFF
CHANGING
CH_PERID_BETRG = lv_CH_PERID_BETRG
CH_SPLIT_BETRG = lv_CH_SPLIT_BETRG ).

Links to Related Class(s)

IF_HRPAY...
Full list of available SAP object classes

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!