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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IR_SRVMGR_TRQImportingTYPE REF TO
/BOBF/IF_TRA_SERVICE_MANAGER
Containing the public service methods of a service manager
IT_ROOT_KEYImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_ROOT_KEY_DELETEImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IV_HANDLEImportingTYPE
BALLOGHNDL
Application Log: Log Handle
IV_UPDMODEImportingTYPE
RSUPDMODE
Mode of data update (Full, Delta, etc.)
EO_MESSAGEExportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
ET_EXTRACTION_DATAExportingTYPE
/SCMTMS/T_EXTRACTION_DATA
Table of type /SCMTMS/S_EXTRACTION_DATA



Exceptions of Method TRQ_DATA_RETRIEVE

This method does not have any exceptions

Example 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



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!