OPEN_KEYPRESEL_DBCURSOR SAP Method Open DB Cursor for instance keys pre-selection
Below is documentation, parameters and attributes of ABAP Method OPEN_KEYPRESEL_DBCURSOR within SAP class /BOFU/CL_ARCH_GENER. 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 /BOFU/CL_ARCH_GENER 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 OPEN_KEYPRESEL_DBCURSOR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method OPEN_KEYPRESEL_DBCURSOR
.| Name | Type | Data Type | Description | Default Value |
| IS_BO | Importing | TYPE TY_S_BO | ||
| IS_ROOT_NODE | Importing | TYPE /BOBF/S_CONFRO_NODE | Configuration: ROOT Node | |
| IV_PREPROC | Importing | TYPE ABAP_BOOL | Preprocessing (X) or Write ('') Step? | |
| EV_DB_CURSOR | Exporting | TYPE CURSOR | Open DB Cursor for key pre-selection | |
| EV_MAX_COUNT | Exporting | TYPE INT4 | Max number of relevant documents |
Exceptions of Method OPEN_KEYPRESEL_DBCURSOR
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/CL_ARCH_GENER.
DATA: lv_EV_DB_CURSOR TYPE CURSOR,
lv_EV_MAX_COUNT TYPE INT4,
lv_IS_BO TYPE TY_S_BO,
lv_IS_ROOT_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_IV_PREPROC TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD lo_class=>OPEN_KEYPRESEL_DBCURSOR(
EXPORTING
IS_BO = lv_IS_BO
IS_ROOT_NODE = lv_IS_ROOT_NODE
IV_PREPROC = lv_IV_PREPROC
IMPORTING
EV_DB_CURSOR = lv_EV_DB_CURSOR
EV_MAX_COUNT = lv_EV_MAX_COUNT ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects