SAP CL_CRM_BSP_F4_HELP OO Class - Controller Class for CRM_BSP_FRAME
CL_CRM_BSP_F4_HELP 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_BSP_F4_HELP 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_BSP_F4_HELP is CL_BSP_CONTROLLER2Method list of CL_CRM_BSP_F4_HELP 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 |
| CALL_EVENT_TABLE | Event Selection List Structure | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>CALL_EVENT_TABLE...more details | ||
| CALL_SEARCH_HELP | Call DDIC Search Help with Immediate Hit List Display | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>CALL_SEARCH_HELP...more details | ||
| CALL_USER_HELP | Call User-Defined Input Helps | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>CALL_USER_HELP...more details | ||
| CALL_VALUE_TABLE | Simple Value Table Structure | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>CALL_VALUE_TABLE...more details | ||
| GET_HELP_VALUES | Specific Values From Domains and Check Table | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>GET_HELP_VALUES...more details | ||
| GET_SIMPLE_HELPVALUES | As Implementation in CL_BSP_SERVICES | Protected |
| CALL METHOD cl_crm_bsp_f4_help=>GET_SIMPLE_HELPVALUES...more details | ||
|
| ||
| GET_TYPEID | Private | |
| CALL METHOD cl_crm_bsp_f4_help=>GET_TYPEID...more details | ||
| S2X | Private | |
| CALL METHOD cl_crm_bsp_f4_help=>S2X...more details | ||
| XUTF82S | Private | |
| CALL METHOD cl_crm_bsp_f4_help=>XUTF82S...more details | ||
CL_CRM_BSP_F4_HELP 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 |
| GC_BLVIEW | Instance Attribute | LIKE | Private | ||
| GC_BUTTONGROUP_ID | Instance Attribute | LIKE | Private | ||
| GC_CONTROLLER_ID | Constant | Controller ID | 'controllerid' | LIKE STRING | Protected |
| GC_EVENTGROUP | Instance Attribute | LIKE | Private | ||
| GC_EVENT_TABLE | Instance Attribute | LIKE | Private | ||
| GC_FIELDGROUP | Instance Attribute | LIKE | Private | ||
| GC_FIELDGROUP_VAR | Instance Attribute | LIKE | Private | ||
| GC_HELP_MODE | Instance Attribute | LIKE | Private | ||
| GC_INPUT_FIELD_ID | Instance Attribute | LIKE | Private | ||
| GC_MULTI_VALUE | Constant | Indicator Whether Multivalue | 'multivalue' | LIKE STRING | Protected |
| GC_NO_SORT | Constant | No sort | 'NONE' | LIKE STRING | Protected |
| GC_OBJECT_KEY | Instance Attribute | LIKE | Private | ||
| GC_PAR_CONTENT | Instance Attribute | LIKE | Private | ||
| GC_PAR_HELP_ID | Instance Attribute | LIKE | Private | ||
| GC_PREFIX | Instance Attribute | LIKE | Private | ||
| GC_SEARCH_HELP | Instance Attribute | LIKE | Private | ||
| GC_SORT_BY_KEY | Constant | Sorting according to Key column | 'BY_KEY' | LIKE STRING | Protected |
| GC_SORT_BY_VALUE | Constant | Sorting according to Value column | 'BY_VALUE' | LIKE STRING | Protected |
| GC_STRUCTURE_NAME | Instance Attribute | LIKE | Private | ||
| GC_TOOLBARGROUP | Instance Attribute | LIKE | Private | ||
| GC_TRIGGER_EVENT | Constant | Trigger Event by Value Selection | 'triggerevent' | LIKE STRING | Protected |
| GC_USER_HELP | Instance Attribute | LIKE | Private | ||
| GC_VALUE_TABLE | Instance Attribute | LIKE | Private | ||
| GR_DATA_CONTEXT | Instance Attribute | Data Context | LIKE CL_CRM_BSP_DC_GENERIC | Protected | |
| GR_VALUELIST | Instance Attribute | LIKE | Private | ||
| GT_FIELDCATALOG | Instance Attribute | Field Catalog for List Viewer Control | LIKE DDFIELDS | Protected | |
| GT_FIELD_MAP | Instance Attribute | LIKE | Private | ||
| GT_MAPPING | Instance Attribute | Transfer Table for Mapping | LIKE CRMT_BSP_F4_MAPPING | Protected | |
| GT_SCRIPTS | Instance Attribute | Table of Strings | LIKE STRING_TABLE | Protected | |
| GV_BUTTONGROUP_ID | Instance Attribute | LIKE | Private | ||
| GV_HELP_MODE | Instance Attribute | Help Type | LIKE STRING | Protected | |
| GV_INPUT_FIELD_ID | Instance Attribute | LIKE | Private | ||
| GV_KEY_COLUMN_NAME | Instance Attribute | LIKE | Private | ||
| GV_KEY_COLUMN_ONLY | Instance Attribute | General Flag | ' ' | LIKE FLAG | Protected |
| GV_MULTI_VALUE | Instance Attribute | LIKE | Private | ||
| GV_MULTI_VALUE_SEPARATOR | Instance Attribute | LIKE | Private | ||
| GV_PREFIX | Instance Attribute | LIKE | Private | ||
| GV_SHLP | Instance Attribute | LIKE | Private | ||
| GV_STRUCTURE_NAME | Instance Attribute | Name of DDIC Structure in Hit List | LIKE STRING | Protected | |
| GV_TITLE_KEY | Instance Attribute | LIKE | Private | ||
| GV_TITLE_VALUE | Instance Attribute | LIKE | Private | ||
| GV_TRIGGER_EVENT | Instance Attribute | General Flag | LIKE STRING | Protected | |
| GV_VALUELIST | Instance Attribute | Business Server Pages (BSP) Value List Search Help | LIKE SHSVALTAB | Protected |
Events of Class CL_CRM_BSP_F4_HELP
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... CX_BSP_SERVICES_NOTFOUND - Exceptions in BSP ServicesCX_BSP_SERVICES_PARAM - Exceptions in BSP Services
CX_BSP_SERVICES_SHLP - Exceptions in BSP Search Help Services
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