ADAPT_SELECTION_PARAMETERS SAP Method Redefine: Adapt and extract sel. parameters in subclass









Below is documentation, parameters and attributes of ABAP Method ADAPT_SELECTION_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 - 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 ADAPT_SELECTION_PARAMETERS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method ADAPT_SELECTION_PARAMETERS

.

NameTypeData TypeDescriptionDefault Value
IS_CTXImportingTYPE
/BOBF/S_FRW_CTX_QUERY
Context Information for Queries
IT_FILTER_KEYImportingTYPE
/BOBF/T_FRW_KEY
Query filter keys
ET_SELECTION_PARAMETERS_EXTExportingTYPE
/BOBF/T_FRW_QUERY_SELPARAM
Query Selection Parameters (handled by subclass)
EV_NO_HITSExportingTYPE
ABAP_BOOL
CT_QUERY_ENHANCEChangingTYPE
/SCMTMS/T_QUERY_ENHANCE
Query enhancement table type
CT_REQUESTED_ATTRIBUTESChangingTYPE
/BOBF/T_FRW_NAME
List of Names (e.g. Fieldnames)
CT_RESULT_ENHANCEChangingTYPE
/SCMTMS/T_QDB_ATTR_ENHANCE
Generic result query attributes enhancement table
CT_SELECTION_PARAMETERSChangingTYPE
/BOBF/T_FRW_QUERY_SELPARAM
Query Selection Parameters
CV_NO_DATAChangingTYPE
ABAP_BOOL
Do not select data directly via query SELECT



Exceptions of Method ADAPT_SELECTION_PARAMETERS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/CL_Q_SUPERCLASS.
DATA: lv_CT_QUERY_ENHANCE TYPE /SCMTMS/T_QUERY_ENHANCE,
lv_CT_REQUESTED_ATTRIBUTES TYPE /BOBF/T_FRW_NAME,
lv_CT_RESULT_ENHANCE TYPE /SCMTMS/T_QDB_ATTR_ENHANCE,
lv_CT_SELECTION_PARAMETERS TYPE /BOBF/T_FRW_QUERY_SELPARAM,
lv_CV_NO_DATA TYPE ABAP_BOOL,
lv_ET_SELECTION_PARAMETERS_EXT TYPE /BOBF/T_FRW_QUERY_SELPARAM,
lv_EV_NO_HITS TYPE ABAP_BOOL,
lv_IS_CTX TYPE /BOBF/S_FRW_CTX_QUERY,
lv_IT_FILTER_KEY TYPE /BOBF/T_FRW_KEY,
lv_other TYPE c.

CALL METHOD lo_class=>ADAPT_SELECTION_PARAMETERS(
EXPORTING
IS_CTX = lv_IS_CTX
IT_FILTER_KEY = lv_IT_FILTER_KEY
IMPORTING
ET_SELECTION_PARAMETERS_EXT = lv_ET_SELECTION_PARAMETERS_EXT
EV_NO_HITS = lv_EV_NO_HITS
CHANGING
CT_QUERY_ENHANCE = lv_CT_QUERY_ENHANCE
CT_REQUESTED_ATTRIBUTES = lv_CT_REQUESTED_ATTRIBUTES
CT_RESULT_ENHANCE = lv_CT_RESULT_ENHANCE
CT_SELECTION_PARAMETERS = lv_CT_SELECTION_PARAMETERS
CV_NO_DATA = lv_CV_NO_DATA ).

Links to Related Class(s)

/SCMTMS/...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!