CAL_ADJ_PNT SAP Method Calculation for Adjusted Basis Point









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

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


Parameters of Method CAL_ADJ_PNT

.

NameTypeData TypeDescriptionDefault Value
ASN_DATEImportingTYPE
PJP_BP_ASN_KEY_DTE
Assignment Date
BAS_PNT_PREVImportingTYPE
PJP_BP_PNT_VAL
Retirement Benefit Point Value
CAL_PER_BEGDAImportingTYPE
PJP_BP_ASN_PER_BEGDA
Calculation Period Start Date
CAL_PER_ENDDAImportingTYPE
PJP_BP_ASN_PER_ENDDA
Calculation Period End Date
CO_CODEImportingTYPE
BUKRS
Company Code
PERNRImportingTYPE
PERNR-PERNR
Personnel Number
PNT_IDImportingTYPE
PJP_BP_PNT
Retirement Benefit Point
ADJ_BAS_PNTChangingTYPE
PJP_BP_ADJ_PNT_VAL
Adjustment Retirement Benefit Point Value



Exceptions of Method CAL_ADJ_PNT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_HRPAYJP_BP_BASPNT.
DATA: lv_ADJ_BAS_PNT TYPE PJP_BP_ADJ_PNT_VAL,
lv_ASN_DATE TYPE PJP_BP_ASN_KEY_DTE,
lv_BAS_PNT_PREV TYPE PJP_BP_PNT_VAL,
lv_CAL_PER_BEGDA TYPE PJP_BP_ASN_PER_BEGDA,
lv_CAL_PER_ENDDA TYPE PJP_BP_ASN_PER_ENDDA,
lv_CO_CODE TYPE BUKRS,
lv_PERNR TYPE PERNR-PERNR,
lv_PNT_ID TYPE PJP_BP_PNT,
lv_other TYPE c.

CALL METHOD lo_class=>CAL_ADJ_PNT(
EXPORTING
ASN_DATE = lv_ASN_DATE
BAS_PNT_PREV = lv_BAS_PNT_PREV
CAL_PER_BEGDA = lv_CAL_PER_BEGDA
CAL_PER_ENDDA = lv_CAL_PER_ENDDA
CO_CODE = lv_CO_CODE
PERNR = lv_PERNR
PNT_ID = lv_PNT_ID
CHANGING
ADJ_BAS_PNT = lv_ADJ_BAS_PNT ).

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!