GET_HELP SAP Method get help
Below is documentation, parameters and attributes of ABAP Method GET_HELP within SAP class SC_BADI_PD_UNIV_SERV. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name SC_BADI_PD_UNIV_SERV 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_HELP can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_HELP
.| Name | Type | Data Type | Description | Default Value |
| DEPTH_N1 | Importing | TYPE DEPTH | Display Depth of Structure | |
| DEPTH_N2 | Importing | TYPE DEPTH | Display Depth of Structure | |
| FIELD_NAME | Importing | TYPE CHAR5 | R/2 table | |
| FL_MUTI | Importing | TYPE CHAR1 | Single-Character Indicator | |
| INT_FIELD_VALUE | Importing | TYPE HRASR00GENSRV_DATASET | Data at Initialization | |
| IT_T77AW_N1 | Importing | TYPE HRTB_T77AW | HR: Evaluation Path Definition | |
| IT_T77AW_N2 | Importing | TYPE HRTB_T77AW | HR: Evaluation Path Definition | |
| OBJTYPE | Importing | TYPE OBJTYPE | Object type | |
| HELP_DATASET | Changing | TYPE HRASR00GS_HELP_DATASET | Value Help |
Exceptions of Method GET_HELP
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO SC_BADI_PD_UNIV_SERV.
DATA: lv_DEPTH_N1 TYPE DEPTH,
lv_DEPTH_N2 TYPE DEPTH,
lv_FIELD_NAME TYPE CHAR5,
lv_FL_MUTI TYPE CHAR1,
lv_HELP_DATASET TYPE HRASR00GS_HELP_DATASET,
lv_INT_FIELD_VALUE TYPE HRASR00GENSRV_DATASET,
lv_IT_T77AW_N1 TYPE HRTB_T77AW,
lv_IT_T77AW_N2 TYPE HRTB_T77AW,
lv_OBJTYPE TYPE OBJTYPE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_HELP(
EXPORTING
DEPTH_N1 = lv_DEPTH_N1
DEPTH_N2 = lv_DEPTH_N2
FIELD_NAME = lv_FIELD_NAME
FL_MUTI = lv_FL_MUTI
INT_FIELD_VALUE = lv_INT_FIELD_VALUE
IT_T77AW_N1 = lv_IT_T77AW_N1
IT_T77AW_N2 = lv_IT_T77AW_N2
OBJTYPE = lv_OBJTYPE
CHANGING
HELP_DATASET = lv_HELP_DATASET ).
Links to Related Class(s)
SC_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects