CHANGE_T511K SAP Method of class IF_BADI_HMXCISR0_V_T511K
Below is documentation, parameters and attributes of ABAP Method CHANGE_T511K within SAP class IF_BADI_HMXCISR0_V_T511K. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_BADI_HMXCISR0_V_T511K 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 CHANGE_T511K can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHANGE_T511K
.| Name | Type | Data Type | Description | Default Value |
| BBRUT | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| BBRUTC | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| BTRTL | Importing | TYPE BTRTL | Personnel subarea | |
| BUKRS | Importing | TYPE P0001-BUKRS | Company Code | |
| DIACT | Importing | TYPE PC207-ANZHL | Payroll: Number | |
| DIACTC | Importing | TYPE PC207-ANZHL | Payroll: Number | |
| ENDDA | Importing | TYPE P0001-ENDDA | Valid to | |
| EXE_AC | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| GRA_AC | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| KONST | Importing | TYPE T511K-KONST | Payroll constant | |
| OCRSN | Importing | TYPE T52OCR-OCRSN | Off-cycle payroll reason | |
| PERNR | Importing | TYPE PERNR-PERNR | Personnel number | |
| PERSG | Importing | TYPE PERSG | Employee group | |
| PERSK | Importing | TYPE PERSK | Employee subgroup | |
| PTICAL | Importing | TYPE PC2QC-TICAL | Indicator for tax calculation type | |
| SMIDIA | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| WERKS | Importing | TYPE PERSA | Personnel area | |
| KWERT | Changing | TYPE T511K-KWERT | Payroll constants value |
Exceptions of Method CHANGE_T511K
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_BADI_HMXCISR0_V_T511K.
DATA: lv_BBRUT TYPE PC207-BETRG,
lv_BBRUTC TYPE PC207-BETRG,
lv_BTRTL TYPE BTRTL,
lv_BUKRS TYPE P0001-BUKRS,
lv_DIACT TYPE PC207-ANZHL,
lv_DIACTC TYPE PC207-ANZHL,
lv_ENDDA TYPE P0001-ENDDA,
lv_EXE_AC TYPE PC207-BETRG,
lv_GRA_AC TYPE PC207-BETRG,
lv_KONST TYPE T511K-KONST,
lv_KWERT TYPE T511K-KWERT,
lv_OCRSN TYPE T52OCR-OCRSN,
lv_PERNR TYPE PERNR-PERNR,
lv_PERSG TYPE PERSG,
lv_PERSK TYPE PERSK,
lv_PTICAL TYPE PC2QC-TICAL,
lv_SMIDIA TYPE PC207-BETRG,
lv_WERKS TYPE PERSA,
lv_other TYPE c.
CALL METHOD lo_class=>CHANGE_T511K(
EXPORTING
BBRUT = lv_BBRUT
BBRUTC = lv_BBRUTC
BTRTL = lv_BTRTL
BUKRS = lv_BUKRS
DIACT = lv_DIACT
DIACTC = lv_DIACTC
ENDDA = lv_ENDDA
EXE_AC = lv_EXE_AC
GRA_AC = lv_GRA_AC
KONST = lv_KONST
OCRSN = lv_OCRSN
PERNR = lv_PERNR
PERSG = lv_PERSG
PERSK = lv_PERSK
PTICAL = lv_PTICAL
SMIDIA = lv_SMIDIA
WERKS = lv_WERKS
CHANGING
KWERT = lv_KWERT ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects