SAP CL_CRM_BOL_QUERY_SERVICE OO Class - BOL - Query Service
CL_CRM_BOL_QUERY_SERVICE is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_CRM_BOL_QUERY_SERVICE including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for CL_CRM_BOL_QUERY_SERVICE is CL_CRM_BOL_ABSTR_BOMethod list of CL_CRM_BOL_QUERY_SERVICE SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CHECK_QUERY_PARAMS_SET | Checks Whether Query Parameters Were Set | Public |
| CALL METHOD cl_crm_bol_query_service=>CHECK_QUERY_PARAMS_SET...more details | ||
| CLEAR_QUERY_PARAMETERS | Deletes Query Parameters | Public |
| CALL METHOD cl_crm_bol_query_service=>CLEAR_QUERY_PARAMETERS...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_crm_bol_query_service=>CONSTRUCTOR...more details | ||
| GET_INSTANCE | Factory Method for Generating a Query Service Instance | Public |
| CALL METHOD cl_crm_bol_query_service=>GET_INSTANCE...more details | ||
| GET_QUERY_PARAMS | Protected | |
| CALL METHOD cl_crm_bol_query_service=>GET_QUERY_PARAMS...more details | ||
| GET_QUERY_RESULT | Returns Query Result | Public |
| CALL METHOD cl_crm_bol_query_service=>GET_QUERY_RESULT...more details | ||
|
| ||
| SET_QUERY_PARAMETERS | Private | |
| CALL METHOD cl_crm_bol_query_service=>SET_QUERY_PARAMETERS...more details | ||
| SET_VIEW_NAME | Set View That Is to Be Read as Query Result | Public |
| CALL METHOD cl_crm_bol_query_service=>SET_VIEW_NAME...more details | ||
CL_CRM_BOL_QUERY_SERVICE attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| PARAM_STRUCT_REF | Instance Attribute | LIKE DATA | Protected | ||
| QUERY_NAME | Instance Attribute | Query Service Name | LIKE CRMT_EXT_OBJ_NAME | Protected | |
| QUERY_PARAMS | Instance Attribute | Name-Value Tab for Query Parameters | LIKE CRMT_NAME_VALUE_PAIR_TAB | Protected | |
| QUERY_PARAM_DEFS | Instance Attribute | LIKE | Private | ||
| VIEW_NAME | Instance Attribute | UI View Name | LIKE CRMT_VIEW_NAME | Protected |
Events of Class CL_CRM_BOL_QUERY_SERVICE
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... QUERY_EXECUTED -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