GET_VALUES SAP Method Gets Current and Maximum Values
Below is documentation, parameters and attributes of ABAP Method GET_VALUES within SAP class CL_ABAP_GEN_LIMITS. 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 CL_ABAP_GEN_LIMITS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_VALUES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_VALUES
.| Name | Type | Data Type | Description | Default Value |
| JUMP_LIMIT | Importing | TYPE INT4 | Obsolete | |
| LOCAL_LIMIT | Importing | TYPE INT4 | Size from which local data is reported | |
| PROG_NAME | Importing | TYPE PROGRAMM | ABAP Program Name | |
| GLOBAL_SIZES | Exporting | TYPE BCABLIM_GLOBAL_TAB | Table of Global Values | |
| JUMP_SIZES | Exporting | TYPE BCABLIM_JUMPS_TAB | Obsolete (Limit for jumps lifted) | |
| LOAD_TOTAL | Exporting | TYPE INT4 | Load Size | |
| LOCAL_SIZES | Exporting | TYPE BCABLIM_LOCAL_TAB | Table of Local Values |
Exceptions of Method GET_VALUES
CX_ABAP_LOAD_ERROR - Exception for LOAD REPORTExample ABAP coding
DATA: lv_GLOBAL_SIZES TYPE BCABLIM_GLOBAL_TAB,
lv_JUMP_LIMIT TYPE INT4,
lv_JUMP_SIZES TYPE BCABLIM_JUMPS_TAB,
lv_LOAD_TOTAL TYPE INT4,
lv_LOCAL_LIMIT TYPE INT4,
lv_LOCAL_SIZES TYPE BCABLIM_LOCAL_TAB,
lv_PROG_NAME TYPE PROGRAMM,
lv_other TYPE c.
CALL METHOD CL_ABAP_GEN_LIMITS=>GET_VALUES(
EXPORTING
JUMP_LIMIT = lv_JUMP_LIMIT
LOCAL_LIMIT = lv_LOCAL_LIMIT
PROG_NAME = lv_PROG_NAME
IMPORTING
GLOBAL_SIZES = lv_GLOBAL_SIZES
JUMP_SIZES = lv_JUMP_SIZES
LOAD_TOTAL = lv_LOAD_TOTAL
LOCAL_SIZES = lv_LOCAL_SIZES ).
Links to Related Class(s)
CL_ABAP_...Full list of available SAP object classes
Search for further information about these or an SAP related objects