GET_MAT_HIER_NEXT_LEVEL_UP SAP Method Get next Hierarchy Level with direction: Bottom -> Up
Below is documentation, parameters and attributes of ABAP Method GET_MAT_HIER_NEXT_LEVEL_UP within SAP class /SCMB/CL_PB_DATA. 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 /SCMB/CL_PB_DATA 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 GET_MAT_HIER_NEXT_LEVEL_UP can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_MAT_HIER_NEXT_LEVEL_UP
.| Name | Type | Data Type | Description | Default Value |
| IT_MATID | Importing | TYPE /SCMB/MDL_MATID_TAB | Internal Key for Product | |
| IT_MATNR | Importing | TYPE /SCMB/MDL_MATNR_TAB | Material/Product Indicator (External/Readable Key) | |
| IV_LEVEL | Importing | TYPE I | ||
| CT_MATID | Changing | TYPE /SCMB/MDL_MATID_TAB | Internal Key for Product | |
| CT_MATERIAL_KEY | Changing | TYPE /SCMB/IF_PB_MATERIAL_ACCESS=>TY_T_MATERIAL_KEY |
Exceptions of Method GET_MAT_HIER_NEXT_LEVEL_UP
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_PB_DATA.
DATA: lv_CT_MATID TYPE /SCMB/MDL_MATID_TAB,
lv_IT_MATID TYPE /SCMB/MDL_MATID_TAB,
lv_CT_MATERIAL_KEY TYPE /SCMB/IF_PB_MATERIAL_ACCESS=>TY_T_MATERIAL_KEY,
lv_IT_MATNR TYPE /SCMB/MDL_MATNR_TAB,
lv_IV_LEVEL TYPE I,
lv_other TYPE c.
CALL METHOD lo_class=>GET_MAT_HIER_NEXT_LEVEL_UP(
EXPORTING
IT_MATID = lv_IT_MATID
IT_MATNR = lv_IT_MATNR
IV_LEVEL = lv_IV_LEVEL
CHANGING
CT_MATID = lv_CT_MATID
CT_MATERIAL_KEY = lv_CT_MATERIAL_KEY ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects