SAP CL_STCTM_REPORT_UI OO Class - Report User Interface Superclass
CL_STCTM_REPORT_UI 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_STCTM_REPORT_UI including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_SERIALIZABLE_OBJECTInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_STCTM_TASKInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_STCTM_UI_TASKMethod list of CL_STCTM_REPORT_UI 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_FIELDVALUE | Check value in variant for correct data type | Private |
| CALL METHOD cl_stctm_report_ui=>CHECK_FIELDVALUE...more details | ||
| CHECK_VARIANT_LINE | Check content of one entry in variant table | Private |
| CALL METHOD cl_stctm_report_ui=>CHECK_VARIANT_LINE...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD cl_stctm_report_ui=>CONSTRUCTOR...more details | ||
| CREATE_INITIAL_DATA | Create initial data value of any type | Private |
| CALL METHOD cl_stctm_report_ui=>CREATE_INITIAL_DATA...more details | ||
| DELETE_VARIANT | Delete temporary generated variant from DB | Private |
| CALL METHOD cl_stctm_report_ui=>DELETE_VARIANT...more details | ||
| GET_DEFAULTS | Get default parameter values | Protected |
| CALL METHOD cl_stctm_report_ui=>GET_DEFAULTS...more details | ||
|
| ||
| GET_SELFIELD_TEXTS | Get texts for parameters | Protected |
| CALL METHOD cl_stctm_report_ui=>GET_SELFIELD_TEXTS...more details | ||
| SHOW_PARAMETER | Show parameter values | Protected |
| CALL METHOD cl_stctm_report_ui=>SHOW_PARAMETER...more details | ||
| UPDATE_SELFIELDS_AND_DEFAULTS | Update selfield table and add new default values to variant | Private |
| CALL METHOD cl_stctm_report_ui=>UPDATE_SELFIELDS_AND_DEFAULTS...more details | ||
CL_STCTM_REPORT_UI 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 |
| PT_SELFIELD | Instance Attribute | Selection Screen Field Definition | LIKE TT_SELFIELD | Protected | |
| PT_VARIANT | Instance Attribute | Variant Contents | LIKE TT_VARIANT | Public | |
| P_CLASSNAME | Instance Attribute | LIKE SEOCLSNAME | Private | ||
| P_REPORTNAME | Instance Attribute | ABAP Program Name | LIKE PROGNAME | Protected | |
| P_T_RANGE_CHECK_EXCLUDE | Instance Attribute | LIKE TY_T_RANGE_CHECK_EXCLUDE | Private |
CL_STCTM_REPORT_UI types
TT_SELFIELD - Selection Screen Parameter DefinitionsTT_SELFIELD_TEXT - Selection Screen Parameter Texts
TT_VARIANT - Selection Screen Parameter Values
TY_RANGE_CHECK_EXCLUDE -
TY_T_RANGE_CHECK_EXCLUDE -
T_SELFIELD - Selection Screen Parameter Definition
T_SELFIELD_TEXT - Selection Screen Parameter Text
T_VARIANT - Selection Screen Parameter Value
Links to Related Class(s)
CL_STCTM...Full list of available SAP object classes
Search for further information about these or an SAP related objects