TRQ_DATA_RETRIEVE SAP Method Read BO TRQ
Below is documentation, parameters and attributes of ABAP Method TRQ_DATA_RETRIEVE within SAP class /SCMTMS/CL_BW_EXTRACTION. 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_BW_EXTRACTION 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 TRQ_DATA_RETRIEVE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TRQ_DATA_RETRIEVE
.| Name | Type | Data Type | Description | Default Value |
| IR_SRVMGR_TRQ | Importing | TYPE REF TO /BOBF/IF_TRA_SERVICE_MANAGER | Containing the public service methods of a service manager | |
| IT_ROOT_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IT_ROOT_KEY_DELETE | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IV_HANDLE | Importing | TYPE BALLOGHNDL | Application Log: Log Handle | |
| IV_UPDMODE | Importing | TYPE RSUPDMODE | Mode of data update (Full, Delta, etc.) | |
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ET_EXTRACTION_DATA | Exporting | TYPE /SCMTMS/T_EXTRACTION_DATA | Table of type /SCMTMS/S_EXTRACTION_DATA |
Exceptions of Method TRQ_DATA_RETRIEVE
This method does not have any exceptionsExample ABAP coding
DATA: lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_EXTRACTION_DATA TYPE /SCMTMS/T_EXTRACTION_DATA,
lv_IR_SRVMGR_TRQ TYPE /BOBF/IF_TRA_SERVICE_MANAGER,
lv_IT_ROOT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_ROOT_KEY_DELETE TYPE /BOBF/T_FRW_KEY,
lv_IV_HANDLE TYPE BALLOGHNDL,
lv_IV_UPDMODE TYPE RSUPDMODE,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_BW_EXTRACTION=>TRQ_DATA_RETRIEVE(
EXPORTING
IR_SRVMGR_TRQ = lv_IR_SRVMGR_TRQ
IT_ROOT_KEY = lv_IT_ROOT_KEY
IT_ROOT_KEY_DELETE = lv_IT_ROOT_KEY_DELETE
IV_HANDLE = lv_IV_HANDLE
IV_UPDMODE = lv_IV_UPDMODE
IMPORTING
EO_MESSAGE = lv_EO_MESSAGE
ET_EXTRACTION_DATA = lv_ET_EXTRACTION_DATA ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects