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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IT_TTAMTImportingTYPE
/SCMTMS/T_TTAMT
Table type for TOR Type Assignment
IV_EXEC_ORG_EXT_IDImportingTYPE
/SCMTMS/EXEC_ORG_EXT_ID
Execution Organization External ID
IV_FWO_TYPEImportingTYPE
/SCMTMS/TRQ_FWO_TYPE
Forwarding Order Type
IV_SALES_ORG_EXT_IDImportingTYPE
/SCMB/SALES_ORG_EXT_ID
Sales Organization External ID
IV_SHIPPING_TYPEImportingTYPE
/SCMTMS/SHIPPING_TYPE
Shipping Type
IV_STAGE_TYPEImportingTYPE
/SCMTMS/STAGE_TYPE
Stage Type
IV_TRMODCDImportingTYPE
/SCMTMS/TRMODCODE
Transportation Mode
ES_TTAMTExportingTYPE
/SCMTMS/S_TTAMT
TOR Type Assignment



Exceptions of Method GET_TTAMT

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!