GET_TOR_DATA_CONTAINER SAP Method of class /SCMTMS/CL_TOR_HELPER_READ









Below is documentation, parameters and attributes of ABAP Method GET_TOR_DATA_CONTAINER 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 directly

The following technical details of method GET_TOR_DATA_CONTAINER can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_TOR_DATA_CONTAINER

.

NameTypeData TypeDescriptionDefault Value
IO_READImportingTYPE REF TO
/BOBF/IF_FRW_READ
IS_READ_REQImportingTYPE
TY_READ_REQUEST
IS_READ_REQ_BIImportingTYPE
TY_READ_REQUEST
IT_KL_TOR_REQ_TOR_RELImportingTYPE
/BOBF/T_FRW_KEY_LINK
Relevant Key links to req tor for this call
IT_ROOT_KEYImportingTYPE
/BOBF/T_FRW_KEY
IV_BEFORE_IMAGEImportingTYPE
ABAP_BOOL
RO_DATA_CONTAINERReturningTYPE REF TO
/SCMTMS/CL_TOR_HELPER_READ



Exceptions of Method GET_TOR_DATA_CONTAINER

This method does not have any exceptions

Example ABAP coding


DATA: lv_IO_READ TYPE /BOBF/IF_FRW_READ,
lv_IS_READ_REQ TYPE TY_READ_REQUEST,
lv_IS_READ_REQ_BI TYPE TY_READ_REQUEST,
lv_IT_KL_TOR_REQ_TOR_REL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_ROOT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_BEFORE_IMAGE TYPE ABAP_BOOL,
lv_RO_DATA_CONTAINER TYPE /SCMTMS/CL_TOR_HELPER_READ,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_TOR_HELPER_READ=>GET_TOR_DATA_CONTAINER(
EXPORTING
IO_READ = lv_IO_READ
IS_READ_REQ = lv_IS_READ_REQ
IS_READ_REQ_BI = lv_IS_READ_REQ_BI
IT_KL_TOR_REQ_TOR_REL = lv_IT_KL_TOR_REQ_TOR_REL
IT_ROOT_KEY = lv_IT_ROOT_KEY
IV_BEFORE_IMAGE = lv_IV_BEFORE_IMAGE
RECEIVING
RO_DATA_CONTAINER = lv_RO_DATA_CONTAINER )



"Alternate coding for Method Call with returning parameter
lv_RO_DATA_CONTAINER = /SCMTMS/CL_TOR_HELPER_READ=>GET_TOR_DATA_CONTAINER(
EXPORTING
IO_READ = lv_IO_READ
IS_READ_REQ = lv_IS_READ_REQ
IS_READ_REQ_BI = lv_IS_READ_REQ_BI
IT_KL_TOR_REQ_TOR_REL = lv_IT_KL_TOR_REQ_TOR_REL
IT_ROOT_KEY = lv_IT_ROOT_KEY
IV_BEFORE_IMAGE = lv_IV_BEFORE_IMAGE ).

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!