BSH_DATA_RETRIEVE SAP Method Read BO BSH









Below is documentation, parameters and attributes of ABAP Method BSH_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 BSH_DATA_RETRIEVE can also be found below:

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


Parameters of Method BSH_DATA_RETRIEVE

.

NameTypeData TypeDescriptionDefault Value
IR_SRVMGR_BSHImportingTYPE 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
IV_HANDLEImportingTYPE
BALLOGHNDL
Application Log: Log Handle
IV_UPDMODEImportingTYPE
RSUPDMODE
Mode of data update (Full, Delta, etc.)
IV_UPDTYPEImportingTYPE
/SCMTMS/TDL_BSH_UPDTYPE
Update Type from TAL or BSH
EO_MESSAGEExportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
ET_EXTRACTION_DATAExportingTYPE
/SCMTMS/T_EXTRACTION_DATA
Table Type for Extraction Structure BSH



Exceptions of Method BSH_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_BSH TYPE /BOBF/IF_TRA_SERVICE_MANAGER,
lv_IT_ROOT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_HANDLE TYPE BALLOGHNDL,
lv_IV_UPDMODE TYPE RSUPDMODE,
lv_IV_UPDTYPE TYPE /SCMTMS/TDL_BSH_UPDTYPE,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_BW_EXTRACTION=>BSH_DATA_RETRIEVE(
EXPORTING
IR_SRVMGR_BSH = lv_IR_SRVMGR_BSH
IT_ROOT_KEY = lv_IT_ROOT_KEY
IV_HANDLE = lv_IV_HANDLE
IV_UPDMODE = lv_IV_UPDMODE
IV_UPDTYPE = lv_IV_UPDTYPE
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!