FILL_EXPORTING_PARAMETERS SAP Method Fill ES_QUERY_INFO structure and filter key table
Below is documentation, parameters and attributes of ABAP Method FILL_EXPORTING_PARAMETERS within SAP class /SCMTMS/CL_Q_SUPERCLASS. 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 /SCMTMS/CL_Q_SUPERCLASS 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 FILL_EXPORTING_PARAMETERS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_EXPORTING_PARAMETERS
.| Name | Type | Data Type | Description | Default Value |
| IS_QUERY_OPTIONS | Importing | TYPE /BOBF/S_FRW_QUERY_OPTIONS | Query Options | |
| IV_DBCNT | Importing | TYPE I | Processed Database Table Rows | |
| ES_QUERY_INFO | Exporting | TYPE /BOBF/S_FRW_QUERY_INFO | Query Information | |
| CT_KEY | Changing | TYPE /BOBF/T_FRW_KEY | Key Table |
Exceptions of Method FILL_EXPORTING_PARAMETERS
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_KEY TYPE /BOBF/T_FRW_KEY,
lv_ES_QUERY_INFO TYPE /BOBF/S_FRW_QUERY_INFO,
lv_IS_QUERY_OPTIONS TYPE /BOBF/S_FRW_QUERY_OPTIONS,
lv_IV_DBCNT TYPE I,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_Q_SUPERCLASS=>FILL_EXPORTING_PARAMETERS(
EXPORTING
IS_QUERY_OPTIONS = lv_IS_QUERY_OPTIONS
IV_DBCNT = lv_IV_DBCNT
IMPORTING
ES_QUERY_INFO = lv_ES_QUERY_INFO
CHANGING
CT_KEY = lv_CT_KEY ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects