CHANGE_T7MX70 SAP Method Change the value for field IIMOR
Below is documentation, parameters and attributes of ABAP Method CHANGE_T7MX70 within SAP class IF_BADI_HMXCALC0_T7MX70. 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_BADI_HMXCALC0_T7MX70 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_T7MX70 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHANGE_T7MX70
.| Name | Type | Data Type | Description | Default Value |
| ABKRS | Importing | TYPE P0001-ABKRS | Payroll area | |
| BTRTL | Importing | TYPE P0001-BTRTL | Personnel subarea | |
| BUKRS | Importing | TYPE P0001-BUKRS | Company Code | |
| ENDDA | Importing | TYPE P0001-ENDDA | Valid to | |
| OCRSN | Importing | TYPE T52OCR-OCRSN | Off-cycle payroll reason | |
| PERNR | Importing | TYPE PERNR-PERNR | Personnel number | |
| SMIDIA | Importing | TYPE PC207-BETRG | Personnel payroll: Amount | |
| WERKS | Importing | TYPE PERSA | Personnel area | |
| WT_EXE | Importing | TYPE T7MX70-COEXI | Wage type exempt for tax calculation | |
| WT_GRA | Importing | TYPE PC207-LGART | Wage type | |
| IIMOR | Changing | TYPE PMX_IIMOR | Indicator for tax calculation type |
Exceptions of Method CHANGE_T7MX70
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_HMXCALC0_T7MX70.
DATA: lv_ABKRS TYPE P0001-ABKRS,
lv_BTRTL TYPE P0001-BTRTL,
lv_BUKRS TYPE P0001-BUKRS,
lv_ENDDA TYPE P0001-ENDDA,
lv_IIMOR TYPE PMX_IIMOR,
lv_OCRSN TYPE T52OCR-OCRSN,
lv_PERNR TYPE PERNR-PERNR,
lv_SMIDIA TYPE PC207-BETRG,
lv_WERKS TYPE PERSA,
lv_WT_EXE TYPE T7MX70-COEXI,
lv_WT_GRA TYPE PC207-LGART,
lv_other TYPE c.
CALL METHOD lo_class=>CHANGE_T7MX70(
EXPORTING
ABKRS = lv_ABKRS
BTRTL = lv_BTRTL
BUKRS = lv_BUKRS
ENDDA = lv_ENDDA
OCRSN = lv_OCRSN
PERNR = lv_PERNR
SMIDIA = lv_SMIDIA
WERKS = lv_WERKS
WT_EXE = lv_WT_EXE
WT_GRA = lv_WT_GRA
CHANGING
IIMOR = lv_IIMOR ).
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