SAP /DSD/SL_CL_VIEW_SELECT_RESULT OO Class - GUI Event Display
/DSD/SL_CL_VIEW_SELECT_RESULT 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 /DSD/SL_CL_VIEW_SELECT_RESULT including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of /DSD/SL_CL_VIEW_SELECT_RESULT 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_NODE | Add a Single Node | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>ADD_NODE...more details | ||
| ADD_NODES | Add Several Nodes | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>ADD_NODES...more details | ||
| BUILD_TOOLBAR | Add Buttons to Toolbar | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>BUILD_TOOLBAR...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>CONSTRUCTOR...more details | ||
| EXCLUDE_FROM_TOOLBAR | Remove Functions from Toolbar | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>EXCLUDE_FROM_TOOLBAR...more details | ||
| FREE | Destructor | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>FREE...more details | ||
|
| ||
| GENERATE_NODE_FOR_SETTLE | Generate a Node for a Settlement Document | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>GENERATE_NODE_FOR_SETTLE...more details | ||
| GENERATE_NODE_FOR_TOUR | Generate a Node for a Tour | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>GENERATE_NODE_FOR_TOUR...more details | ||
| GENERATE_NODE_FOR_VISIT | Generate a Node for a Visit | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>GENERATE_NODE_FOR_VISIT...more details | ||
| GET_EXPANDED_NODES | Determine the Expanded Nodes | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>GET_EXPANDED_NODES...more details | ||
| GET_LINES_OF_SELECTED_NODES | Determine the Selected Lines | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>GET_LINES_OF_SELECTED_NODES...more details | ||
| GET_NODE_KEYS | Determine the Node Key for the DB Key | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>GET_NODE_KEYS...more details | ||
| INIT_TREE | Initialize the Tree | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>INIT_TREE...more details | ||
| IS_FOLDER | Is the Viewed Node a Folder? | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>IS_FOLDER...more details | ||
| REFRESH | New Display | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>REFRESH...more details | ||
| SET_DATA | Set Data to Be Displayed | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>SET_DATA...more details | ||
| SET_EVENT_HANDLER | Register Events | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>SET_EVENT_HANDLER...more details | ||
| SET_EXPANDED_NODES | Expand Node | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>SET_EXPANDED_NODES...more details | ||
| SET_FIELDCATALOG | Set the Field Catalog to Be Used | Private |
| CALL METHOD /dsd/sl_cl_view_select_result=>SET_FIELDCATALOG...more details | ||
| SET_HIGHLIGHTING | Highlight a Node | Public |
| CALL METHOD /dsd/sl_cl_view_select_result=>SET_HIGHLIGHTING...more details | ||
/DSD/SL_CL_VIEW_SELECT_RESULT 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 |
| MC_ICON_DISPLAY | Constant | Icon in text fields (substitute display, alias) | ICON_DISPLAY | LIKE ICON_D | Public |
| MC_ICON_REFRESH | Constant | Icon for Button 'Refresh Display' | ICON_REFRESH | LIKE ICON_D | Private |
| MC_ICON_SEARCH_VISIBLE | Constant | Icon for Button 'Toggle Visibility Search area' | ICON_SELECTION | LIKE ICON_D | Private |
| MC_ICON_SETTLE | Constant | Icon for a Settlement Document | ICON_DOCUMENT | LIKE ICON_D | Public |
| MC_ICON_TOUR | Constant | Icon for a Tour | ICON_TRANSPORT | LIKE ICON_D | Public |
| MC_ICON_VISIT | Constant | Icon for a Visit | ICON_VISIT | LIKE ICON_D | Public |
| MC_WIDTH_HEADER | Constant | Width of the 'Hierarchy Header' | 50 | LIKE I | Private |
| MF_NODE_NOT_SETTLED | Instance Attribute | Checkbox | LIKE /DSD/HH_CHECKBOX | Private | |
| MR_TOOLBAR | Instance Attribute | Toolbar of the Tree | LIKE CL_GUI_TOOLBAR | Public | |
| MR_TREE | Instance Attribute | Tree for the Event Display | LIKE CL_GUI_ALV_TREE | Public | |
| MT_FCAT | Instance Attribute | Field Catalog Event Display | LIKE LVC_T_FCAT | Private | |
| MT_KEYS | Instance Attribute | Mapping DB Key <-> Tree Key | LIKE /DSD/SL_NODE_KEY_S_TT | Private | |
| MT_TREE_DATA | Instance Attribute | Data to Be Displayed | LIKE /DSD/SL_GUI_RESULT_LIST_S_TT | Private |
Links to Related Class(s)
/DSD/SL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects