IF_RSBOLAP_FLAT_RESULT_SET is a standard SAP interface, see below for any documentation including details of methods, attributes, events etc. Interfaces are defined much the same as a class using the same transactions but act a bit like a template (in none OO terms). For example, a class would implement the interface and then inherit all of the methods etc from it. This provides a mechanism for unrelated objects to use a set of common behaviours and functionality.
You may have seen this already without knowing what it was, within SAP have you ever seen the method name prefixed by the name of an interface such as IF_RSBOLAP_FLAT_RESULT_SET~METHOD_NAME . This means that the class has implemented an interface and that this method has been inherited from it.
For further relevant information about this interface enter IF_RSBOLAP_FLAT_RESULT_SET into the relevant SAP transactions such as SE24, SE80. Also see the Resource section below to view other useful tips, screenshots, links and general information related to this SAP interface and its methods. Or even add your own for future reference
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 CL_ABAP_CHAR_UTILITIES=>methodname EXPORTING/IMPORTING...
List of attributes within class IF_RSBOLAP_FLAT_RESULT_SET. These can be referenced using the following syntax IF_RSBOLAP_FLAT_RESULT_SET=>
Name | Description | Initial Value |
C_STATE_DATA | C State Data | 1 |
C_STATE_LIMIT_EXCEEDED | C State Limit Exceeded | 4 |
C_STATE_NO_AUTHORITY | C State No Authority | 3 |
C_STATE_NO_DATA | C State No Data | 2 |
DOM_ATTRIBUTE_COLUMN | Dom Attribute Column | 'column' |
DOM_ATTRIBUTE_ROW | Dom Attribute Row | 'row' |
DOM_ATTRIBUTE_STATE | Dom Attribute State | 'state' |
DOM_DISPLAY_LEVEL | Dom Display Level | 'DISPLAY_LEVEL' |
DOM_DISPLAY_VALUE | Dom Display Value | 'DISPLAY_VALUE' |
DOM_ELEMENT | Dom Element | 'ELEMENT' |
DOM_NUMERICAL_PRECISION | Dom Numerical Precision | 'NUMERICAL_PRECISION' |
DOM_RESULT_SET | Dom Result Set | 'RESULT_SET' |
DOM_TUPLE | Dom Tuple | 'TUPLE' |
DOM_TUPLES | Dom Tuples | 'TUPLES' |
N_IN_SYNC | N In Sync | |
N_R_LIST_QUERY_VIEW | N R List Query View | |
N_STATE | N State | |
N_S_STATE | N S State |
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
CHANGED
-
Changed
EXECUTED
-
Executed
FREED
-
Freed