GET_DATA SAP Method of class /SCMTMS/CL_BW_READ_HELPER









Below is documentation, parameters and attributes of ABAP Method GET_DATA within SAP class /SCMTMS/CL_BW_READ_HELPER. 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_READ_HELPER 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_DATA can also be found below:

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


Parameters of Method GET_DATA

.

NameTypeData TypeDescriptionDefault Value
IT_FIELD_MAPImportingTYPE
TT_FIELD_MAP
IT_PARAMETERImportingTYPE
TT_SELECTION_PARAMETER
IV_AGGRImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_INFO_PROVIDERImportingTYPE
CHAR30
30 Characters
IV_QUERYImportingTYPE
CHAR30
30 Characters
IV_VIEW_IDImportingTYPE
CHAR30
30 Characters
ET_RESULTExportingTYPE REF TO
DATA



Exceptions of Method GET_DATA

ET_RESULTExportingTYPE REF TO
DATARRW3_ERROR - Data not returned

Example ABAP coding


DATA: lv_ET_RESULT TYPE DATA,
lv_IT_FIELD_MAP TYPE TT_FIELD_MAP,
lv_IT_PARAMETER TYPE TT_SELECTION_PARAMETER,
lv_IV_AGGR TYPE BOOLE_D,
lv_IV_INFO_PROVIDER TYPE CHAR30,
lv_IV_QUERY TYPE CHAR30,
lv_IV_VIEW_ID TYPE CHAR30,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_BW_READ_HELPER=>GET_DATA(
EXPORTING
IT_FIELD_MAP = lv_IT_FIELD_MAP
IT_PARAMETER = lv_IT_PARAMETER
IV_AGGR = lv_IV_AGGR
IV_INFO_PROVIDER = lv_IV_INFO_PROVIDER
IV_QUERY = lv_IV_QUERY
IV_VIEW_ID = lv_IV_VIEW_ID
IMPORTING
ET_RESULT = lv_ET_RESULT ).

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!