GET_STAGNANT_INCR SAP Method Determine if stagnant incr allowed and thereby the amount









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

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


Parameters of Method GET_STAGNANT_INCR

.

NameTypeData TypeDescriptionDefault Value
IT0000ImportingTYPE
P0000_TAB
HR Master Record: Infotype 0000 (Actions)
IT0001ImportingTYPE
P0001_TAB
HR Master Record: Infotype 0001 (Organizational Assignment)
IT0008ImportingTYPE
P0008_TAB
HR Master Record: Infotype 0008 (Basic Pay)
IT0015ImportingTYPE
P0015_TAB
HR Master Record: Infotype 0015 (Additional Payments)
IT0902ImportingTYPE
P0902_TAB
HR Master Record for Infotype 0902
NUM_STAG_INCRExportingTYPE
PIN_STAG_INCR
Number of stagnant increment
STAG_INCR_AMTExportingTYPE
PAD_AMT7S
Wage Type Amount for Payments



Exceptions of Method GET_STAGNANT_INCR

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_HRPBSIN_STAGNANT_INCR.
DATA: lv_IT0000 TYPE P0000_TAB,
lv_IT0001 TYPE P0001_TAB,
lv_IT0008 TYPE P0008_TAB,
lv_IT0015 TYPE P0015_TAB,
lv_IT0902 TYPE P0902_TAB,
lv_NUM_STAG_INCR TYPE PIN_STAG_INCR,
lv_STAG_INCR_AMT TYPE PAD_AMT7S,
lv_other TYPE c.

CALL METHOD lo_class=>GET_STAGNANT_INCR(
EXPORTING
IT0000 = lv_IT0000
IT0001 = lv_IT0001
IT0008 = lv_IT0008
IT0015 = lv_IT0015
IT0902 = lv_IT0902
IMPORTING
NUM_STAG_INCR = lv_NUM_STAG_INCR
STAG_INCR_AMT = lv_STAG_INCR_AMT ).

Links to Related Class(s)

IF_HRPBS...
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!