DQUERY_LOAD SAP Method of class CL_CRM_BOL_CORE
Below is documentation, parameters and attributes of ABAP Method DQUERY_LOAD within SAP class CL_CRM_BOL_CORE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_CRM_BOL_CORE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method DQUERY_LOAD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DQUERY_LOAD
.| Name | Type | Data Type | Description | Default Value |
| IV_QUERY_ID | Importing | TYPE GENIL_DQUERY_HANDLE | ||
| ES_QUERY_PARAMETERS | Exporting | TYPE GENILT_QUERY_PARAMETERS | ||
| ET_SELECTION_PARAMETERS | Exporting | TYPE GENILT_SELECTION_PARAMETER_TAB | ||
| EV_QUERY_NAME | Exporting | TYPE CRMT_EXT_OBJ_NAME |
Exceptions of Method DQUERY_LOAD
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO CL_CRM_BOL_CORE.
DATA: lv_ES_QUERY_PARAMETERS TYPE GENILT_QUERY_PARAMETERS,
lv_ET_SELECTION_PARAMETERS TYPE GENILT_SELECTION_PARAMETER_TAB,
lv_EV_QUERY_NAME TYPE CRMT_EXT_OBJ_NAME,
lv_IV_QUERY_ID TYPE GENIL_DQUERY_HANDLE,
lv_other TYPE c.
CALL METHOD lo_class=>DQUERY_LOAD(
EXPORTING
IV_QUERY_ID = lv_IV_QUERY_ID
IMPORTING
ES_QUERY_PARAMETERS = lv_ES_QUERY_PARAMETERS
ET_SELECTION_PARAMETERS = lv_ET_SELECTION_PARAMETERS
EV_QUERY_NAME = lv_EV_QUERY_NAME ).
Links to Related Class(s)
CL_CRM_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects