SAP CL_GUI_ABAPEDIT OO Class - ABAP Edit Control
CL_GUI_ABAPEDIT 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_GUI_ABAPEDIT 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_GUI_ABAPEDIT is CL_GUI_SOURCEEDITMethod list of CL_GUI_ABAPEDIT 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 |
| ADD_MARKER | Private | |
| CALL METHOD cl_gui_abapedit=>ADD_MARKER...more details | ||
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD cl_gui_abapedit=>CLASS_CONSTRUCTOR...more details | ||
| CLEAR_LINE_MARKERS | Private | |
| CALL METHOD cl_gui_abapedit=>CLEAR_LINE_MARKERS...more details | ||
| CONSTRUCTOR | Create Control | Public |
| CALL METHOD cl_gui_abapedit=>CONSTRUCTOR...more details | ||
| CONVERT_XTAB_TO_TOKENTAB | Converts xtab to token table | Protected |
| CALL METHOD cl_gui_abapedit=>CONVERT_XTAB_TO_TOKENTAB...more details | ||
| DEL_MARKER | Private | |
| CALL METHOD cl_gui_abapedit=>DEL_MARKER...more details | ||
|
| ||
| GET_COMPLETER | Deliver ABAP Parser for Code Completion | Public |
| CALL METHOD cl_gui_abapedit=>GET_COMPLETER...more details | ||
| INIT_COMPLETER | Initialize ABAP Parser for Code Completion (Create or Reset) | Public |
| CALL METHOD cl_gui_abapedit=>INIT_COMPLETER...more details | ||
| REGISTER_CHECK_MARKERS | Register error/warning/info/PP marker | Public |
| CALL METHOD cl_gui_abapedit=>REGISTER_CHECK_MARKERS...more details | ||
| REGISTER_DIFFERENCE_MARKER | Register splitscreen editor different marker | Public |
| CALL METHOD cl_gui_abapedit=>REGISTER_DIFFERENCE_MARKER...more details | ||
| REGISTER_LINE_MARKERS | Private | |
| CALL METHOD cl_gui_abapedit=>REGISTER_LINE_MARKERS...more details | ||
| REMOVE_COMPLETER | Destroy ABAP Parser for Code Completion | Public |
| CALL METHOD cl_gui_abapedit=>REMOVE_COMPLETER...more details | ||
| SEND_COMPLETION_COMMAND | Send Completion Command | Public |
| CALL METHOD cl_gui_abapedit=>SEND_COMPLETION_COMMAND...more details | ||
| SET_ABAP_TYPE | Private | |
| CALL METHOD cl_gui_abapedit=>SET_ABAP_TYPE...more details | ||
| UPDATE_LINE_MARKERS | Private | |
| CALL METHOD cl_gui_abapedit=>UPDATE_LINE_MARKERS...more details | ||
CL_GUI_ABAPEDIT 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 |
| ABAP_PARSER | Instance Attribute | ABAP Parser for Code Completion | LIKE CL_ABAP_PARSER | Private | |
| ICON_HANDLER | Instance Attribute | LIKE | Private | ||
| LEXERFILEKEY | Static Attribute | Key for ABAP Grammar Description File | LIKE CNDP_ASYNC_KEY | Private | |
| MARKER_CHECK_ERROR | Constant | Errors | 20 | LIKE I | Public |
| MARKER_CHECK_INFORMATION | Constant | Information | 22 | LIKE I | Public |
| MARKER_CHECK_WARNING | Constant | Warning | 21 | LIKE I | Public |
| MARKER_DIFFERENCE | Constant | Difference | CL_GUI_SOURCEEDIT=>MIN_USER_MARKER_NUMBER | LIKE I | Public |
| MARKER_ENH_POINT | Instance Attribute | LIKE | Private | ||
| MARKER_PRETTY_PRINTER | Constant | Pretty Printer error | 23 | LIKE I | Public |
| MARKER_SOURCE_CODE_PLUGIN | Constant | Source code extension | 24 | LIKE I | Public |
| MARKER_SOURCE_MODIFICATION | Instance Attribute | LIKE | Private | ||
| MARKER_WORKLIST_ITEM | Constant | Source code extension | 27 | LIKE I | Public |
| M_ABAP_PARSER | Instance Attribute | ABAP Parser for Code Completion | LIKE CL_ABAP_PARSER | Private | |
| PADFILENAME | Static Attribute | Filename of PAD file, including path | LIKE STRING | Public | |
| REGISTERED_MARKERS | Instance Attribute | LIKE | Private |
CL_GUI_ABAPEDIT types
FORMAT_SETTINGS -X120 -
XTAB120 -
Links to Related Class(s)
CL_GUI_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects