SET_HIERARCHY SAP Method Set Hierarchy









Below is documentation, parameters and attributes of ABAP Method SET_HIERARCHY within SAP class IF_RSBOLAP_HIERARCHY_BASE. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_RSBOLAP_HIERARCHY_BASE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method SET_HIERARCHY can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method SET_HIERARCHY

.

NameTypeData TypeDescriptionDefault Value
I_DEFAULT_PRESENTATIONSImportingTYPE
RSBOLAP_PRESENTATION_BIT_LIST
Presentation List for Node Types
I_DUEDATEImportingTYPE
RSBOLAP_DATE
Key Date of Hierarchy
I_NAMEImportingTYPE
RSBOLAP_OBJECT_NAME
Name of hierarchy (hierarchy is removed if initial)
I_S_HIERARCHY_STATEImportingTYPE
BICS_PROV_STATE_HIERARCHY
Status of a Hierarchy
I_TMPJOINImportingTYPE
RS_BOOL
Use THJ hierarchy
I_VERSIONImportingTYPE
RSBOLAP_VERSION
Version



Exceptions of Method SET_HIERARCHY

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_RSBOLAP_HIERARCHY_BASE.
DATA: lv_I_DEFAULT_PRESENTATIONS TYPE RSBOLAP_PRESENTATION_BIT_LIST,
lv_I_DUEDATE TYPE RSBOLAP_DATE,
lv_I_NAME TYPE RSBOLAP_OBJECT_NAME,
lv_I_S_HIERARCHY_STATE TYPE BICS_PROV_STATE_HIERARCHY,
lv_I_TMPJOIN TYPE RS_BOOL,
lv_I_VERSION TYPE RSBOLAP_VERSION,
lv_other TYPE c.

CALL METHOD lo_class=>SET_HIERARCHY(
EXPORTING
I_DEFAULT_PRESENTATIONS = lv_I_DEFAULT_PRESENTATIONS
I_DUEDATE = lv_I_DUEDATE
I_NAME = lv_I_NAME
I_S_HIERARCHY_STATE = lv_I_S_HIERARCHY_STATE
I_TMPJOIN = lv_I_TMPJOIN
I_VERSION = lv_I_VERSION ).

Links to Related Class(s)

IF_RSBOL...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!