INDI_WERBKST SAP Method Monthly Individual Income-Related Costs









Below is documentation, parameters and attributes of ABAP Method INDI_WERBKST 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 INDI_WERBKST can also be found below:

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


Parameters of Method INDI_WERBKST

.

NameTypeData TypeDescriptionDefault Value
IM_KF_NENNERImportingTYPE
PC03_DEC11_4
Reduction Factor Numerator
IM_KF_ZAEHLERImportingTYPE
PC03_DEC11_4
Reduction Factor Denominator
IM_WERBPImportingTYPE
BETRG
Field of Type DATS
CH_PERID_BETRGChangingTYPE
MAXBT
Unreduced Amount
CH_SPLIT_BETRGChangingTYPE
MAXBT
Reduced Amount



Exceptions of Method INDI_WERBKST

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_KF_NENNER TYPE PC03_DEC11_4,
lv_IM_KF_ZAEHLER TYPE PC03_DEC11_4,
lv_IM_WERBP TYPE BETRG,
lv_other TYPE c.

CALL METHOD lo_class=>INDI_WERBKST(
EXPORTING
IM_KF_NENNER = lv_IM_KF_NENNER
IM_KF_ZAEHLER = lv_IM_KF_ZAEHLER
IM_WERBP = lv_IM_WERBP
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!