SAP /DSD/CL_DX_VIEW OO Class - View for DEX
/DSD/CL_DX_VIEW 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/CL_DX_VIEW 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/CL_DX_VIEW 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 |
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD /dsd/cl_dx_view=>CONSTRUCTOR...more details | ||
| CREATE_AND_DISPLAY_DEX_DETAIL | Create table for selected and parsed DEX data | Public |
| CALL METHOD /dsd/cl_dx_view=>CREATE_AND_DISPLAY_DEX_DETAIL...more details | ||
| CREATE_DEX_OVERVIEW | Create tree and display all DEX data | Protected |
| CALL METHOD /dsd/cl_dx_view=>CREATE_DEX_OVERVIEW...more details | ||
| CREATE_LIPS | Create table for selected LIPS data | Protected |
| CALL METHOD /dsd/cl_dx_view=>CREATE_LIPS...more details | ||
| DISPLAY | Display controls | Public |
| CALL METHOD /dsd/cl_dx_view=>DISPLAY...more details | ||
| DISPLAY_DETAIL_PARSED_DATA | Display details of parsed data | Public |
| CALL METHOD /dsd/cl_dx_view=>DISPLAY_DETAIL_PARSED_DATA...more details | ||
|
| ||
| DISPLAY_LIPS | Display selected LIPS data | Public |
| CALL METHOD /dsd/cl_dx_view=>DISPLAY_LIPS...more details | ||
| FREE | DESTRUCTOR | Public |
| CALL METHOD /dsd/cl_dx_view=>FREE...more details | ||
/DSD/CL_DX_VIEW 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 |
| GO_DEX_CTRL | Instance Attribute | Controller for DEX | LIKE /DSD/CL_DX_CTRL | Public | |
| GO_DEX_DETAIL_ALV | Instance Attribute | Basis Class for Simple Tables | LIKE CL_SALV_TABLE | Public | |
| GO_DEX_DETAIL_CONTAINER | Instance Attribute | Abstract Container for GUI Controls | LIKE CL_GUI_CONTAINER | Public | |
| GO_DEX_OVERVIEW_TREE | Instance Attribute | Basis Class for Tree Structure | LIKE CL_SALV_TREE | Public | |
| GO_LIPS_ALV | Instance Attribute | Basis Class for Simple Tables | LIKE CL_SALV_TABLE | Public | |
| GR_DEX_DETAIL_DATA | Instance Attribute | Table with parsed DEX data | LIKE DATA | Public | |
| GS_DEX_DETAIL_LAYOUT | Instance Attribute | Layout Key | LIKE SALV_S_LAYOUT_KEY | Public | |
| GS_DEX_OVERVIEW_LAYOUT | Instance Attribute | Layout Key | LIKE SALV_S_LAYOUT_KEY | Public | |
| GS_LIPS_LAYOUT | Instance Attribute | Layout Key | LIKE SALV_S_LAYOUT_KEY | Public | |
| GT_DETAIL_PARSED_DATA | Instance Attribute | Display Detail of parsed DEX data | LIKE /DSD/DX_DETAIL_PARSED_DATA_TT | Public | |
| GT_DEX_HD | Instance Attribute | DEX header | LIKE /DSD/DX_DEX_HD_TT | Public | |
| GT_DEX_ITM | Instance Attribute | DEX item | LIKE /DSD/DX_DEX_ITM_TT | Public | |
| GT_LIPS | Instance Attribute | Table type SD document: Delivery: Item data | LIKE TAB_LIPS | Public | |
| GT_STRUCTURE | Instance Attribute | DEX Structure | LIKE /DSD/DX_STRUCTURE_TT | Protected |
Links to Related Class(s)
/DSD/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects