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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IT_FIELD_MAP | Importing | TYPE TT_FIELD_MAP | ||
| IT_PARAMETER | Importing | TYPE TT_SELECTION_PARAMETER | ||
| IV_AGGR | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_INFO_PROVIDER | Importing | TYPE CHAR30 | 30 Characters | |
| IV_QUERY | Importing | TYPE CHAR30 | 30 Characters | |
| IV_VIEW_ID | Importing | TYPE CHAR30 | 30 Characters | |
| ET_RESULT | Exporting | TYPE REF TO DATA |
Exceptions of Method GET_DATA
DATA
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