TRANSFER_TAX_DATA SAP Method Transfer of tax data from MM-SRV to country package
Below is documentation, parameters and attributes of ABAP Method TRANSFER_TAX_DATA within SAP class SRV_TAXES_COUNTRY. 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 SRV_TAXES_COUNTRY 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 TRANSFER_TAX_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TRANSFER_TAX_DATA
.| Name | Type | Data Type | Description | Default Value |
| IS_COMSRV | Importing | TYPE COMSRV | Interface: MM External Services Management | |
| IS_ESLH | Importing | TYPE ESLH | Service Package Header Data | |
| IS_ESLL | Importing | TYPE ESLL | Lines of Service Package | |
| IS_LFA1 | Importing | TYPE LFA1 | Vendor Master (General Section) | |
| IV_KALSM | Importing | TYPE KALSM_D | Structure for F4 help for costing sheet | |
| IS_LFA1 | Importing | TYPE LFA1 | Supplier Master (General Section) | |
| T_KOMV | Changing | TYPE KOMV_TAB | Pricing Communications-Condition Record |
Exceptions of Method TRANSFER_TAX_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO SRV_TAXES_COUNTRY.
DATA: lv_IS_COMSRV TYPE COMSRV,
lv_IS_ESLH TYPE ESLH,
lv_IS_ESLL TYPE ESLL,
lv_IS_LFA1 TYPE LFA1,
lv_IV_KALSM TYPE KALSM_D,
lv_T_KOMV TYPE KOMV_TAB,
lv_IS_LFA1 TYPE LFA1,
lv_other TYPE c.
CALL METHOD lo_class=>TRANSFER_TAX_DATA(
EXPORTING
IS_COMSRV = lv_IS_COMSRV
IS_ESLH = lv_IS_ESLH
IS_ESLL = lv_IS_ESLL
IS_LFA1 = lv_IS_LFA1
IV_KALSM = lv_IV_KALSM
IS_LFA1 = lv_IS_LFA1
CHANGING
T_KOMV = lv_T_KOMV ).
Links to Related Class(s)
SRV_TAXE...Full list of available SAP object classes
Search for further information about these or an SAP related objects