GET_TTAMT SAP Method Get TOR Type Assignment
Below is documentation, parameters and attributes of ABAP Method GET_TTAMT within SAP class /SCMTMS/CL_COMMON_BO_HELPER. 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/CL_COMMON_BO_HELPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_TTAMT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TTAMT
.| Name | Type | Data Type | Description | Default Value |
| IT_TTAMT | Importing | TYPE /SCMTMS/T_TTAMT | Table type for TOR Type Assignment | |
| IV_EXEC_ORG_EXT_ID | Importing | TYPE /SCMTMS/EXEC_ORG_EXT_ID | Execution Organization External ID | |
| IV_FWO_TYPE | Importing | TYPE /SCMTMS/TRQ_FWO_TYPE | Forwarding Order Type | |
| IV_SALES_ORG_EXT_ID | Importing | TYPE /SCMB/SALES_ORG_EXT_ID | Sales Organization External ID | |
| IV_SHIPPING_TYPE | Importing | TYPE /SCMTMS/SHIPPING_TYPE | Shipping Type | |
| IV_STAGE_TYPE | Importing | TYPE /SCMTMS/STAGE_TYPE | Stage Type | |
| IV_TRMODCD | Importing | TYPE /SCMTMS/TRMODCODE | Transportation Mode | |
| ES_TTAMT | Exporting | TYPE /SCMTMS/S_TTAMT | TOR Type Assignment |
Exceptions of Method GET_TTAMT
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_TTAMT TYPE /SCMTMS/S_TTAMT,
lv_IT_TTAMT TYPE /SCMTMS/T_TTAMT,
lv_IV_EXEC_ORG_EXT_ID TYPE /SCMTMS/EXEC_ORG_EXT_ID,
lv_IV_FWO_TYPE TYPE /SCMTMS/TRQ_FWO_TYPE,
lv_IV_SALES_ORG_EXT_ID TYPE /SCMB/SALES_ORG_EXT_ID,
lv_IV_SHIPPING_TYPE TYPE /SCMTMS/SHIPPING_TYPE,
lv_IV_STAGE_TYPE TYPE /SCMTMS/STAGE_TYPE,
lv_IV_TRMODCD TYPE /SCMTMS/TRMODCODE,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COMMON_BO_HELPER=>GET_TTAMT(
EXPORTING
IT_TTAMT = lv_IT_TTAMT
IV_EXEC_ORG_EXT_ID = lv_IV_EXEC_ORG_EXT_ID
IV_FWO_TYPE = lv_IV_FWO_TYPE
IV_SALES_ORG_EXT_ID = lv_IV_SALES_ORG_EXT_ID
IV_SHIPPING_TYPE = lv_IV_SHIPPING_TYPE
IV_STAGE_TYPE = lv_IV_STAGE_TYPE
IV_TRMODCD = lv_IV_TRMODCD
IMPORTING
ES_TTAMT = lv_ES_TTAMT ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects