GET_TOR_ADDRESS_DATA SAP Method Get the address relevant data for a TOR instance
Below is documentation, parameters and attributes of ABAP Method GET_TOR_ADDRESS_DATA within SAP class /SCMTMS/CL_TOR_HELPER_READ. 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_TOR_HELPER_READ 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_TOR_ADDRESS_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TOR_ADDRESS_DATA
.| Name | Type | Data Type | Description | Default Value |
| IO_DATA_PROV | Importing | TYPE REF TO /SCMTMS/IF_DATA_INTERFACE | Generic Data Interface | |
| IO_READ | Importing | TYPE REF TO /BOBF/IF_FRW_READ | Interface to Read Data | |
| IT_D_PARTY | Importing | TYPE /SCMTMS/T_TOR_PARTY_K | Parties on Root node level | |
| IT_D_ROOT | Importing | TYPE /SCMTMS/T_TOR_ROOT_K | Root Node | |
| IT_ROOT_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IV_BEFORE_IMAGE | Importing | TYPE ABAP_BOOL | ||
| ET_DOC_ADDRESS | Exporting | TYPE /SCMTMS/CL_ADDR_HELPER=>TT_DOC_ADDR | Consolidated BOFU-Address data for document(deviat. or BP) |
Exceptions of Method GET_TOR_ADDRESS_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_DOC_ADDRESS TYPE /SCMTMS/CL_ADDR_HELPER=>TT_DOC_ADDR,
lv_IO_DATA_PROV TYPE /SCMTMS/IF_DATA_INTERFACE,
lv_IO_READ TYPE /BOBF/IF_FRW_READ,
lv_IT_D_PARTY TYPE /SCMTMS/T_TOR_PARTY_K,
lv_IT_D_ROOT TYPE /SCMTMS/T_TOR_ROOT_K,
lv_IT_ROOT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_BEFORE_IMAGE TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_TOR_HELPER_READ=>GET_TOR_ADDRESS_DATA(
EXPORTING
IO_DATA_PROV = lv_IO_DATA_PROV
IO_READ = lv_IO_READ
IT_D_PARTY = lv_IT_D_PARTY
IT_D_ROOT = lv_IT_D_ROOT
IT_ROOT_KEY = lv_IT_ROOT_KEY
IV_BEFORE_IMAGE = lv_IV_BEFORE_IMAGE
IMPORTING
ET_DOC_ADDRESS = lv_ET_DOC_ADDRESS ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects