FILL_TAXDATA_4_TC_CHELE SAP Method Fill the tax data for transp. chrg. ele into the IDT
Below is documentation, parameters and attributes of ABAP Method FILL_TAXDATA_4_TC_CHELE within SAP class /SCMTMS/CL_CFIR_CRT_REQ_ASSIST. 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 /SCMTMS/CL_CFIR_CRT_REQ_ASSIST 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 FILL_TAXDATA_4_TC_CHELE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_TAXDATA_4_TC_CHELE
.| Name | Type | Data Type | Description | Default Value |
| IV_CHARGE_CATEGORY_CODE | Importing | TYPE /SCMTMS/CPX_TOR_INPRRQ_CAT_COD | Proxy Data Element (generated) | |
| IV_CHARGE_SUBCAT_CODE | Importing | TYPE /SCMTMS/CPX_TOR_INPRRQ_SUB_CAT | Proxy Data Element (generated) | |
| IV_CHARGE_TYPE | Importing | TYPE /SCMTMS/TRCHARG_ELMNT_TYPECD | Charge Type | |
| IV_COUNTRY_CODE | Importing | TYPE LAND1 | Country Key | |
| IV_TRAFFIC_DIRECTION | Importing | TYPE /SCMTMS/TRAFFIC_DIRECTION | Traffic Direction | |
| CS_CFIR_MT_TAXDATA_TCELE | Changing | TYPE /SCMTMS/CPX_CUST_FRT_IN_TAB115 | CustFrtInvcReqSUITEReq_V1TranspChrgTaxRlvntData |
Exceptions of Method FILL_TAXDATA_4_TC_CHELE
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 /SCMTMS/CL_CFIR_CRT_REQ_ASSIST.
DATA: lv_CS_CFIR_MT_TAXDATA_TCELE TYPE /SCMTMS/CPX_CUST_FRT_IN_TAB115,
lv_IV_CHARGE_CATEGORY_CODE TYPE /SCMTMS/CPX_TOR_INPRRQ_CAT_COD,
lv_IV_CHARGE_SUBCAT_CODE TYPE /SCMTMS/CPX_TOR_INPRRQ_SUB_CAT,
lv_IV_CHARGE_TYPE TYPE /SCMTMS/TRCHARG_ELMNT_TYPECD,
lv_IV_COUNTRY_CODE TYPE LAND1,
lv_IV_TRAFFIC_DIRECTION TYPE /SCMTMS/TRAFFIC_DIRECTION,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_TAXDATA_4_TC_CHELE(
EXPORTING
IV_CHARGE_CATEGORY_CODE = lv_IV_CHARGE_CATEGORY_CODE
IV_CHARGE_SUBCAT_CODE = lv_IV_CHARGE_SUBCAT_CODE
IV_CHARGE_TYPE = lv_IV_CHARGE_TYPE
IV_COUNTRY_CODE = lv_IV_COUNTRY_CODE
IV_TRAFFIC_DIRECTION = lv_IV_TRAFFIC_DIRECTION
CHANGING
CS_CFIR_MT_TAXDATA_TCELE = lv_CS_CFIR_MT_TAXDATA_TCELE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects