GET_TCCS_SINGLE SAP Method Get single TCCS Template
Below is documentation, parameters and attributes of ABAP Method GET_TCCS_SINGLE within SAP class /SCMTMS/IF_CUST_TCCS_TEMPL. 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 /SCMTMS/IF_CUST_TCCS_TEMPL 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 GET_TCCS_SINGLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TCCS_SINGLE
.| Name | Type | Data Type | Description | Default Value |
| IV_SPRAS | Importing | TYPE SYLANGU | Language Key | |
| IV_TCCS_ID | Importing | TYPE /SCMTMS/TCCS_TEMPLATE | Calculation Sheet Template | |
| ES_TCCS | Exporting | TYPE /SCMTMS/S_TCCS | TCCS Template | |
| ES_TCCS_T | Exporting | TYPE TS_TCCS_TEXT | TCCS Template |
Exceptions of Method GET_TCCS_SINGLE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/IF_CUST_TCCS_TEMPL.
DATA: lv_ES_TCCS TYPE /SCMTMS/S_TCCS,
lv_ES_TCCS_T TYPE TS_TCCS_TEXT,
lv_IV_SPRAS TYPE SYLANGU,
lv_IV_TCCS_ID TYPE /SCMTMS/TCCS_TEMPLATE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_TCCS_SINGLE(
EXPORTING
IV_SPRAS = lv_IV_SPRAS
IV_TCCS_ID = lv_IV_TCCS_ID
IMPORTING
ES_TCCS = lv_ES_TCCS
ES_TCCS_T = lv_ES_TCCS_T ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects